The alloy tag has no wiki summary.
6
votes
1answer
243 views
Have an object in one set or another, but not both?
This is homework and I'm having a lot of trouble with it. I am using Alloy to model a library. Here are the definitions of the objects:
sig Library {
patrons : set Person,
on_shelves : set ...
6
votes
1answer
238 views
Experiences with using Alloy in real-world projects
I have been interested in formal methods for some time. I have used formal methods to reason about some very specific sub-areas of a few projects I have been working on. I was never able to convince ...
1
vote
1answer
143 views
Is it sufficient to learn YUI for the development with Alloy UI?
There is not really much information available for Alloy UI (the current JavaScript framework for Liferay 6.x), and as it builds on top of YUI, is it enough to get a book for YUI and scan through ...
1
vote
0answers
60 views
Using alloy instances for creating Java instances and automatically generate testcase
I want to use alloy4 for an automated testcase generation research project. can anyone plz help me with this ?
how can I use alloy for creating java instance objects by using alloy generated instances ...
1
vote
1answer
113 views
Problem with predicate in Alloy
So I have the following bit of code in Alloy:
sig Node { }
sig Queue { root : Node }
pred SomePred {
no q, q' : Queue | q.root = q'.root
}
run SomePred for 3
but this won't yield any instance ...
1
vote
1answer
62 views
How can one express that a relationship must not be cyclic?
Consider a upgrades relationship:
I need to make sure that upgrades cannot be circular. How can I do that in Alloy?
0
votes
0answers
93 views
How to set <aui:button> icon in Liferay without using Javascript?
I'm trying to set icon to <aui:button> like on this tutorial.
But solution described there doesn't work well in my case, because I have a table and on each row I have a button with different ...
0
votes
1answer
92 views
In Liferay, can one portlet open a separate portlet inside a new AUI dialog?
I've been all over the Liferay sites and haven't found an answer that works. What I want to do is have a JavaScript function inside my custom portlet that will open an AUI dialog box, and that dialog ...
0
votes
0answers
73 views
How to call script at runtime?
I want to execute script in BodyContent of Dialog Box,But below code is not working.
It is not generating alert in IE8, Is there any way to load script at runtime in dialogBox
...
0
votes
1answer
37 views
Alloy expression failed to be typechecked
I'm a beginner in Alloy (specification language) and need to do some further work based on a case study, which can be found here (code is on page 5).
Relevant code:
open util/ordering[Time] as T0
...
0
votes
1answer
67 views
Alloy fact NOT both properties
I have a piece of code in ALLOY I am trying to do a restaurant reservation system and I have this sig and relation between them.
abstract sig Table{
breakfast: one breakFast,
lunch: one Lunch,
...
0
votes
0answers
66 views
Implementing heap with alloy
I'm trying to implement a static model of binary heap using alloy (max-heap).
I created a simple model by only using a Heap class (or atom) and a Node class. The Node class contain references to the ...
0
votes
1answer
58 views
Getting an item by its date in Alloy
I'm stuck on this formal methods homework problem and I'm not sure what I'm not getting right.
I have two signatures, Item and ToDo which are defined as so:
sig Item {
due : Date lone -> ...