We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The constraints seem not to be inherited properly:
abstract Component abstract Port throughput -> integer // [Mbit/s] abstract Port10Mbit : Port [ throughput = 10 ] abstract Port100Mbit : Port [ throughput = 100 ] C1 : Component R1 : Port10Mbit R2 : Port100Mbit
The expected instance (produced by AlloyIG) is:
C1 R1 throughput$1 -> 10 R2 throughput$2 -> 100
However, chocosolver produces:
C1 R1 throughput -> -1001 R2 throughput$1 -> -1001
The text was updated successfully, but these errors were encountered:
test case for issue #31
50fb796
Inherit constraints from nested abstract clafers, resolving issue #31.
7590e17
Fixed.
Sorry, something went wrong.
JLiangWaterloo
No branches or pull requests
The constraints seem not to be inherited properly:
The expected instance (produced by AlloyIG) is:
However, chocosolver produces:
The text was updated successfully, but these errors were encountered: