You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the spec is realisable, the tool outputs the result into stderr instead of stdout.
Should it be std::cout instead of std::cerr? It seems as a normal-operation output, not an error. Unless it is by convention.
(when checking the tool performed as expected I check that stderr is empty; here it is not.)
extensionInteractiveStrategy.hpp
56: std::cerr << "RESULT: Specification is realizable.\n";
extensionNondeterministicMotion.hpp
496: std::cerr << "RESULT: Specification is realizable.\n";
synthesisContextBasics.cpp
112: std::cerr << "RESULT: Specification is realizable.\n";
The text was updated successfully, but these errors were encountered:
Good point, but there is a reason. Only the computed strategy is output to STDOUT to allow it to be redirected to a file. Otherwise, the strategy file would have a stray "RESULT: Specification is realizable" at the top.
When the spec is realisable, the tool outputs the result into
stderr
instead ofstdout
.Should it be
std::cout
instead ofstd::cerr
? It seems as a normal-operation output, not an error. Unless it is by convention.(when checking the tool performed as expected I check that
stderr
is empty; here it is not.)The text was updated successfully, but these errors were encountered: