riddle-lang 0.2.0

RiDDLe is a language for the definition of timeline-based domains and problem definitions, designed to facilitate the integration with solvers and to increase modularity and reusability of domain models.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
* This problem is intended to introduce some basic concepts about the constraint network and the available constraints on the object variables.
*/

class Speed {}
Speed high = new Speed();
Speed medium = new Speed();
Speed low = new Speed();

Speed x0, x1, x2;
x0 != x1;
x1 != x2;
x0 != x2;