From 74bd671350ae47ee337e351aff18e8ffbd9ebf56 Mon Sep 17 00:00:00 2001 From: Alexandre Duret-Lutz Date: Tue, 21 Aug 2012 16:26:28 +0200 Subject: [PATCH] Add cosimulation and iterated_simulations to the web interface. * wrap/python/spot.i (cosimulation, iterated_simulations): Declare. * wrap/python/ajax/spot.in, wrap/python/ajax/protocol.txt, wrap/python/ajax/ltl2tgba.html: Add options to trigger these two optimizations. --- wrap/python/ajax/ltl2tgba.html | 23 ++++++++++++++++++++--- wrap/python/ajax/protocol.txt | 2 ++ wrap/python/ajax/spot.in | 19 ++++++++++++++++++- wrap/python/spot.i | 2 ++ 4 files changed, 42 insertions(+), 4 deletions(-) diff --git a/wrap/python/ajax/ltl2tgba.html b/wrap/python/ajax/ltl2tgba.html index daa2ab783..537c20d58 100644 --- a/wrap/python/ajax/ltl2tgba.html +++ b/wrap/python/ajax/ltl2tgba.html @@ -90,6 +90,16 @@ $("#to-l,#to-s").attr('disabled', true); } }) + $("#as-ds,#as-rs").change(function() { + if ($(this).is(':checked')) { + $("#as-is").removeAttr('checked'); + } + }) + $("#as-is").change(function() { + if ($(this).is(':checked')) { + $("#as-ds,#as-rs").removeAttr('checked'); + } + }) function hideOrShowPanels(output, duration) { switch (output) @@ -645,11 +655,18 @@ an identifier: aUb is an atomic proposition, unlike determinize and minimize obligation properties
-