I just wanted to add my conclusion to this thread. Maybe it will be helpful to others.
As Markus correctly stated, there is no "util" module in the standard or community modules. However, there was a workaround using functions from the community modules and a neat hack for options.
My specific problem was that I needed the functions: SeqToSet, SetToSeq, and MapSeq (which maps a function over a seq); and Options.
In the community module SequencesExt, there are functions ToSet: Seq -> Set and SetToSeq: Set -> Seq (the definition of this one is super cool, if you're not familiar with it, check it out).
It was easy enough to define MapSeq. I did this by defining
```
MapSeq(f(_),s) == [i \in 1..Len(s) |-> f(s[i])]
```
The last thing was to model Option(Data) which I did by defining a CONSTANT None (which I gave a model value) and just modeled Option(Data) as {Data} \cup {None}.
Hopefully this will be of help to someone!