<useDefaultCommand>true</useDefaultCommand>
<runAllBuilders>true</runAllBuilders>
</target>
+ <target name="check" path="test/unit" targetID="org.eclipse.cdt.build.MakeTargetBuilder">
+ <buildCommand>make</buildCommand>
+ <buildArguments>-j10</buildArguments>
+ <buildTarget>check</buildTarget>
+ <stopOnError>true</stopOnError>
+ <useDefaultCommand>true</useDefaultCommand>
+ <runAllBuilders>true</runAllBuilders>
+ </target>
</buildTargets>
</storageModule>
</cproject>
Unreachable();
}
-int MinisatSatSolver::getAssertionLevel() const {
+unsigned MinisatSatSolver::getAssertionLevel() const {
// we have no user context implemented so far
return 0;
}
void unregisterVar(SatLiteral lit);
void renewVar(SatLiteral lit, int level = -1);
- int getAssertionLevel() const;
+ unsigned getAssertionLevel() const;
// helper methods for converting from the internal Minisat representation
/** Incremental interface */
-int DPLLMinisatSatSolver::getAssertionLevel() const {
+unsigned DPLLMinisatSatSolver::getAssertionLevel() const {
return d_minisat->getAssertionLevel();
}
/** Incremental interface */
- int getAssertionLevel() const;
+ unsigned getAssertionLevel() const;
void push();