In this module I use the Alloy "div":
module test
one sig Test {
t: Int
} {
t = div[4,2]
}
run {}
Executing that works fine.
I created another module, which uses the first module:
module hope
open test
sig A {}
run {}
Executing that results in the following error message:
The name "div" cannot be found.
Why am I getting the error message? How to fix it?