I have this code:
taking’ = taking ∪ {s? → m?}
As you can see, taking
is a name for a relation where s
maps to m
. Above relation shows the adding procedure (union) where I am adding a new maptlet to this relation.
However, I need to get the number of s
available in this relation. How can I get it? Below is what I have done
#taking = numberOfStudents
But I am not sure about this.