CITS5501 lab 10 (week 11) – Modelling with Alloy – solutions
It is strongly suggested you complete the recommended readings for weeks 1–10 before attempting this lab.
The Alloy Analyzer is a tool used for checking Alloy models.
You can download the analyzer to run on your own computer (or a lab computer) – it should run on (at least) Windows, MacOS X and Linux, as long as you have a Java runtime installed.
You can download the analyzer from the web page here:
Use the alloy.dmg
file if you are on a Mac, and the
org.alloytools.alloy.dist.jar
file if you are on Windows or
Linux.
On many systems, to run the analyzer, you simply need to double-click
on the .jar
file. If this doesn’t work, then it can be run
from the command line:
$ java -jar org.alloytools.alloy.dist.jar
The running analyser should look something like this:
If the fonts displayed look odd – from the “Options” / “Font” menu, select “Courier” or “Courier New”, and a reasonable font size (12pt or 14pt), then restart the analyser.
You can access a GitHub repository which lets you use the Alloy analyser from within an online IDE using Gitpod by visiting https://github.com/arranstewart-dev/alloy-analyser-gitpod/ and following the instructions there.
A limitation of Gitpod is that you can’t copy and paste between the
Alloy analyser window and the clipboard of the computer you’re
using. However, you can copy and paste to the tab in which
Microsoft VS Code is open. So if you want to paste code into an Alloy
.als
file, one way to do it is:
.als
file using VS Code, using “File” / “New
file” from the menus..als
file in the Alloy
Analyser./workspace/alloy-analyser-gitpod
.)Downloading and running the .jar
file for Alloy avoids
this limitation.
Note that an “Alloy syntax cheat sheet” is available at https://esb-dev.github.io/mat/alloy-cheatsheet.pdf, but we will be covering only a small fraction of the Alloy syntax.
For your reference, a tutorial for using the Alloy Analyzer is available here:
An online book that shows in more detail how to create and analyse software specifications with Alloy is available here:
We will start with Alloy by investigating how to model entities (“sigs”, in Alloy) and their properties.
How would you translate the following into Alloy syntax? All of these can be done by declaring sigs and properties.
Sample solutions
There exist such things as chessboards:
sig Chessboard { }
There is one, and only one, tortoise in the world:
one sig Tortoise { }
// Note that any time we want to constrain the number of
// members of a sig, we can do it in the shorthand way
// above; but it can also be constrained using a *fact*
// (syntax below).
// But putting it in the sig is usually easiest
// to read.
sig Tortoise {}
fact oneTortoise {
#Tortoise = 1
}
// The hash symbol operator means "cardinality" (or "size").
// `#Tortoise = 1` means "The relation Tortoise has exactly
// one row".
There exists at least one policeman:
some sig Policeman { }
Files have exactly one parent directory.
Note that we only model what we are asked to model; we don’t add in any sigs or properties, besides the ones needed.
The question doesn’t say (for instance) that files and directories are both types of “file system object” – so we shouldn’t model it.
sig Directory { }
// note that we could leave the 'one' off if
// we wanted -- it efault multiplicity --
// but it's often clearest to leave it in.
sig File { parent : one Directory }
Directories have at most one parent directory.
sig Directory { parent : lone Directory }
There is no problem with having “recursive” sigs that “refer to themselves”. Recall that a property is really just expressing a relation between entities. The above code just says that there are such things as directories, and that any directory can be in a relationship with zero or one other directories.
(Extra exercise: does the sig allow a directory to be its own parent? You should be able to work this out from the lecture slides and the tutorial – or by using the Alloy Analyzer.)
Configuration files have at least one section.
sig ConfigFile { sections: some Section }
sig Section {}
Alloy has two commands, “run
” and
“check
”. We’ll consider “run
” first. We can
ask Alloy to generate sample “universes” which meet the constraints set
out by our model, by using the “run
” command.
Let’s suppose we want to model a situation in which “Houses have doors, and houses can have more than one door”.
Try entering the following into a fresh .als
file:
{}
sig Door { doors: set Door }
sig House
example() {
pred }
for exactly 2 House, 2 Door run example
Save the file, and under the “Execute” menu, you should now see a menu item “Run example for exactly 2 House, 2 Door” – select that menu item. (Or, press the “Execute” button.)
In the right-hand alloy pane, you should see the message “Instance found”, and a clickable link – click the instance, and you should see one “possible universe” that the Alloy analyser has created for us.
Some points to note:
run
command takes one mandatory argument, a
predicate. The predicate acts as a sort of “filter”, limiting the
possible “universes” Alloy will show us. An empty predicate, like
example
, means “no limits”.for exactly 2 House, 2 Door
” part specifies a
scope, and is optional. Try deleting it and execute the
run
command again. By default, the analyser assumes there
may up to three of each top-level signature, and any number of
relations. You can read more about scopes in the alloy
documentation.run
command in a file: by
default, the analyser will execute the first one it encounters.Reinstate the scope we originally had and re-execute the
run
command, and click on the link to show the
visualisation. You should see one “possible universe” that the Alloy
analyser has created for us:
Assuming we think that doors should only ever belong to a single house, then the universe we’re being shown here is underconstrained – our specification is too loose, and allows in “silly” possibilities we don’t actually want.
There are multiple ways we could fix this.
We could decide that doors aren’t really important enough to be an
entity, and model the number of doors a house has as just an
Int
(capital “I”):
{ numDoors: one Int }
sig House
example() {}
pred
for exactly 2 House run example
Int
is a special predefined sig in Alloy representing
integers.
Alloy comes with other predefined sigs as will, but to use them you
will have to import them from the module where they are defined using an
“open
” statement. If you write large Alloy models, then you
can also use modules to break up your model into smaller, more
comprehensible parts.
You can read more about Alloy modules here and see a list of modules the Alloy analyser ships with here. You should be able to open any of these “utility” modules to see their contents.
We could add in additional facts to constrain our “universes”. The easiest way to do this is to do the following:
Door
a property
house: one House
We end up with
{ house: one House }
sig Door { doors: set Door }
sig House
{
fact HouseDoorInverse : House, d: Door | d in h.doors implies d.house = h
all h}
example() {
pred }
for exactly 2 House, 2 Door run example
Try running this again. You should end up with the following visualisation:
If we think every house should have at least one door, then our model
is still underconstrained, because the analyser is showing us houses
with no doors; we should have use “some” instead of “set” when writing
sig House { doors: set Door }
. Try changing “set” to
“some”, and run again.
Experiment with different scopes for the “run” command.
For all the remaining problems in this worksheet, you should check your work by:
run
” commands to view the results.If the results aren’t what you expect, you need to adjust your model and try again.
Recall that in Alloy, facts are additional constraints about
the world, that aren’t expressed in the sigs, and can be used to
“tighten” the meaning of your model. (Some constraints can be expressed
either in the sig, or as a fact – in that case, you should choose
whatever seems clearer.) For instance, using the example
File
and Dir
and FSObject
sigs
from the lecture:
fact {
File + Dir = FSObject
}
means, “the set of files, plus the set of directories, is the same as the set of all file-system objects”.
Or, if we give our fact a name:
fact noOtherFSObjects {
File + Dir = FSObject
}
Take a look at the Alloy quick reference, which gives other operators
you can use besides “+
” and “=
”. For instance,
“-
” (set subtraction), “#
” (set cardinality,
or “size”), “&
” (set intersection), “in
”
(set membership), typical comparison operators (“<
”,
“>
”, “=<
”, “=>
”), and
typical logical operators (“&&
”, “||
”,
“!
”), and see if you can give Alloy facts which express the
following.
Assume we have a sig LectureTheatre{}
and a sig
Venue{}
.
Give a fact which constrains every lecture theatre to also be a venue. (Note that we could do this using “extends” in the sig, also. But sometimes it’s more convenient to express things using facts, or the constraint we want is too complicated for just “extends”.)
Assume we have the sigs DomesticatedAnimal{}
,
Canine{}
, Dog{}
. Write a fact constraining
Dog
to be the intersection of
DomesticatedAnimal
and Canine
.
Sample solutions:
a. Every lecture theatre is a venue
sig Venue {}
sig Lecture {}
// All lecture theaters are venues
fact { LectureTheatre in Venue }
// However note that you will get a warning in Alloy if you
// try this: by default, each sig is a distinct type.
// the following will run without warnings:
//
// sig Venue {}
// sig Lecture in Venue {}
b. Dog
is the intersection of
DomesticatedAnimal
and Canine
.
sig DomesticatedAnimal { }
sig Canine { }
sig Dog {}
fact { Dog = DomesticatedAnimal & Canine }
// As before -- the above will give warnings.
//
// Code that runs without warnings:
//
// sig Animal {}
// sig DomesticatedAnimal in Animal {}
// sig Canine in Animal {}
// sig Dog in Canine {}
//
// fact { Dog = DomesticatedAnimal & Canine }
The facts in the previous section constrain sets (e.g. the set of lecture theatres, or the set of omnivores).
We can also write constraints that apply to every entity in some set.
For example, suppose we have the following sigs:
sig Activity {}
sig Person { hobbies: set Activity }
sig ComputerScientist extends Person {}
We can apply the following constraint: “Computer scientists have no hobbies:”
fact {
all cs : ComputerScientist | #cs.hobbies = 0
}
The hash symbol operator (“#
”) gives us the
cardinality or size of a set. cs
is a bit like a
“loop variable” in a Java “for ... each
” loop: it gives us
a way of referring to individuals in the set we’re considering (in this
case, computer scientists). The pipe symbol can be read as “such that”
or “it is the case that”.
So with the addition of this fact, our model can be translated into English as:
People can have zero or more hobbies; computer scientists are a sort of person.
For all computer scientists – let us use the name cs
to refer to some arbitrary computer scientist. If we look at their
hobbies of cs
, it is the case that their number of hobbies
will always be 0.
Or, more succinctly: all computer scientists have zero hobbies.
It’s also possible to write this using “no” (another sort of
“multiplicity”, like lone
or set
):
fact {
all cs : ComputerScientist | no cs.hobbies
}
Challenge exercise: try extending this model to say:
If you have worked with formal or mathematical logic at all: “all” in Alloy is the same as the “for all” quantifier in predicate logic.
Sample solutions:
Economists are also people:
// if we assume Economist never overlaps with ComputerScientist
sig Economist extends Person {}
Economists have at most one hobby.
fact {
all econ : Economist | lone econ.hobbies
}
Students are people.
sig Student extends Person {}
// Alternative to this: plausibly, we might instead model
// students as a subset of Person, so you can
// be a student economist.
Students have at least one hobby.
fact {
all s : Student | some s.hobbies
}
Bots are not people.
// We can just declare bots as a separate sig --
// by default, they won't overlap with Person
sig Bot {}
As a challenge exercise, you might like to try solving the “Farmer River Crossing” puzzle using Alloy:
A farmer is on one shore of a river and has with him a fox, a chicken, and a sack of grain. He has a boat that fits one object besides himself. If the farmer is present, nothing gets eaten; but if left without the farmer, the fox will eat the chicken, and the chicken will eat the grain. How can the farmer get all three possessions across the river safely?
Before attempting to solve it, you may wish to work through the online Alloy tutorial, which covers some features of Alloy we haven’t looked at yet. The tutorial presents the problem (and a possible solution) in chapter 2.