From 36c699606f794bcbe31bf2a1fd5eeaa7d97226d7 Mon Sep 17 00:00:00 2001 From: pimjager Date: Tue, 14 Jun 2016 11:29:58 +0200 Subject: [PATCH] kut rushhour spelletje --- uppaal/2.xml | 81 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 uppaal/2.xml diff --git a/uppaal/2.xml b/uppaal/2.xml new file mode 100644 index 0000000..ad68966 --- /dev/null +++ b/uppaal/2.xml @@ -0,0 +1,81 @@ + + + + // Place global declarations here. + +const int N = 13; +typedef int[0,N-1] id_c; + +chan up[N], down[N], left[N], right[N]; + + + // Place template instantiations here. +H1 = HorzCar(2, 0, 0, 5); +H2 = HorzCar(2, 1, 2, 5); +V3 = VertCar(2, 2, 4, 4); +V4 = VertCar(2, 3, 2, 3); +V5 = VertCar(3, 4, 5, 2); +V6 = VertCar(2, 5, 1, 3); +H7 = HorzCar(2, 6, 3, 4); +H8 = HorzCar(2, 7, 3, 2); +V9 = VertCar(3, 8, 0, 0); +HA = HorzCar(2, 9, 1, 0); +VB = VertCar(2, 10, 3, 0); +HC = HorzCar(2, 11, 4, 1); +HD = HorzCar(2, 12, 4, 0); +// List one or more processes to be composed into a system. +system H1, H2, V3, V4, V5, V6, H7, H8, V9, HA, VB, HC, HD; + + + + -- 2.20.1