Skip to content

Commit

Permalink
Stop FMB running in ucore mode
Browse files Browse the repository at this point in the history
  • Loading branch information
selig committed Jul 8, 2021
1 parent 108158b commit 0b42c35
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Kernel/MainLoop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,9 @@ MainLoop* MainLoop::createFromOptions(Problem& prb, const Options& opt)
if(env.statistics->polymorphic || env.statistics->higherOrder){
USER_ERROR("Finite model buillding is currently not compatible with polymorphism or higher-order constructs");
}
if(env.options->outputMode() == Shell::Options::Output::UCORE){
USER_ERROR("Finite model building is not compatible with producing unsat cores");
}
//TODO should return inappropriate result instead of error
res = new FiniteModelBuilder(prb,opt);
break;
Expand Down

0 comments on commit 0b42c35

Please sign in to comment.