Hi,
Alloy in Eclipse is a great idea. Better user experience.
I have this question if I may. I ran the Alloy example from:
http://alloy.mit.edu/alloy4/tutorial4/currentmodel-FS-1.html
using the traditional Alloy Analyzer 4.1.10 and the Eclipse Alloy
plugin
When I change this:
// File system has one root
assert oneRoot { one d: Dir | no d.parent }
to this (one -> no)
// File system has one root
assert oneRoot { no d: Dir | no d.parent }
The traditional Analyzer shows a counterexample but the Eclipse Alloy
does not. It writes in the console:
============ Command Check oneRoot for 5: ============
============ Total time: 0 (ms) ===========
============ Answer ============
Am I doing anything incorrectly?
Thank you.