We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3196aaf + 42f3fb8 commit d3e7aeaCopy full SHA for d3e7aea
src/main/java/kodkod/instance/PardinusBounds.java
@@ -196,10 +196,14 @@ static public PardinusBounds splitAtTemporal(PardinusBounds bounds) {
196
// in this automatic splitting they are irrelevant any way, since static are resolved first
197
List<Relation> problematic = new LinkedList<Relation>();
198
Set<Relation> rs = b.relations_symb;
199
- for (Relation r : rs)
200
- for (Relation d : b.symbolic.deps.get(r))
201
- if (d.isVariable())
202
- problematic.add(r);
+ for (Relation r : rs) {
+ if (r.isVariable())
+ problematic.add(r);
+ else
203
+ for (Relation d : b.symbolic.deps.get(r))
204
+ if (d.isVariable())
205
206
+ }
207
208
rs.removeAll(problematic);
209
0 commit comments