aboutsummaryrefslogtreecommitdiffstats
path: root/passes/sat
diff options
context:
space:
mode:
Diffstat (limited to 'passes/sat')
-rw-r--r--passes/sat/sim.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/passes/sat/sim.cc b/passes/sat/sim.cc
index d0e0b526c..3cf5967cc 100644
--- a/passes/sat/sim.cc
+++ b/passes/sat/sim.cc
@@ -1012,6 +1012,9 @@ struct SimWorker : SimShared
log_warning("Stop time is after simulation file end time\n");
}
}
+ if (stopCount<startCount) {
+ log_error("Stop time is before start time\n");
+ }
auto edges = fst->getAllEdges(fst_clock, startCount, stopCount);
fst->reconstructAllAtTimes(edges);
bool initial = false;