Skip to content

Commit

Permalink
fix: off by one error in PetriNetIntegerDomain
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukáš Chudíček committed Nov 7, 2023
1 parent 1682a2c commit d2d8174
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/symbolic_domain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ impl SymbolicDomain<u8> for PetriNetIntegerDomain {
for i in 0..self.variables.len() {
let mut allowed_i = variables.mk_var(self.variables[i]);

for j in 0..=self.variables.len() {
for j in 0..self.variables.len() {
if j == i {
continue;
}
Expand Down

0 comments on commit d2d8174

Please sign in to comment.