Skip to content

Commit

Permalink
Transform only logical constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
jmhorcas committed Oct 25, 2024
1 parent e26d9e2 commit 0a2a7e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def transform(self) -> PySATModel:
for relation in self.source_model.get_relations():
self.add_relation(relation)

for constraint in self.source_model.get_constraints():
for constraint in self.source_model.get_logical_constraints():
self.add_constraint(constraint)

return self.destination_model

0 comments on commit 0a2a7e0

Please sign in to comment.