-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
separate traces when zone abstraction is used
- Loading branch information
1 parent
4336da5
commit 4e07ec8
Showing
9 changed files
with
100 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
.../xta-analysis/src/main/java/hu/bme/mit/theta/xta/analysis/ClockPred/NoneTraceChecker.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package hu.bme.mit.theta.xta.analysis.ClockPred; | ||
|
||
import hu.bme.mit.theta.analysis.Trace; | ||
import hu.bme.mit.theta.analysis.expr.refinement.ExprTraceStatus; | ||
import hu.bme.mit.theta.analysis.expr.refinement.ZoneRefutation; | ||
import hu.bme.mit.theta.analysis.zone.DBM; | ||
import hu.bme.mit.theta.analysis.zone.ZonePrec; | ||
import hu.bme.mit.theta.analysis.zone.ZoneState; | ||
import hu.bme.mit.theta.core.type.Expr; | ||
import hu.bme.mit.theta.core.type.booltype.BoolType; | ||
import hu.bme.mit.theta.solver.ItpSolver; | ||
import hu.bme.mit.theta.xta.analysis.XtaAction; | ||
|
||
public class NoneTraceChecker extends XtaTraceChecker{ | ||
private NoneTraceChecker(final Expr<BoolType> init, DBM initDBM, final Expr<BoolType> target, final ItpSolver solver,ZonePrec clocks ) { | ||
super(init, initDBM, target, solver, clocks); | ||
} | ||
|
||
public static NoneTraceChecker create(final Expr<BoolType> init, DBM initDBM, final Expr<BoolType> target, final ItpSolver solver, ZonePrec clocks) { | ||
return new NoneTraceChecker(init, initDBM, target, solver, clocks); | ||
} | ||
@Override | ||
public ExprTraceStatus<ZoneRefutation> check(Trace<ZoneState, XtaAction> trace) { | ||
return ExprTraceStatus.feasible(null); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.