* spot/twaalgos/synthesis.cc, spot/twaalgos/synthesis.hh: New files regrouping the functionnalities split and apply_strategy for synthesis * python/spot/impl.i, spot/twaalgos/Makefile.am: Add them. * spot/twaalgos/split.cc, spot/twaalgos/split.hh: No longer contains the splits necessary for for synthesis, moved to spot/twaalgos/synthesis.cc, spot/twaalgos/split.hh Split is now faster and reduces the number of intermediate states, reducing the overall size of the arena * spot/misc/game.cc, spot/misc/game.hh: Renaming propagate_players to alternate_players. * tests/core/ltlsynt.test, tests/python/split.py: Update tests. * bin/ltlsynt.cc: Adjust to new split. Swap order of split and to_parity for lar.
119 lines
2.9 KiB
Python
119 lines
2.9 KiB
Python
# -*- mode: python; coding: utf-8 -*-
|
|
# Copyright (C) 2018-2020 Laboratoire de Recherche et
|
|
# Développement de l'Epita
|
|
#
|
|
# This file is part of Spot, a model checking library.
|
|
#
|
|
# Spot is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Spot is distributed in the hope that it will be useful, but WITHOUT
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
|
|
# License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import spot
|
|
|
|
|
|
def incl(a, b):
|
|
return not b.intersects(spot.dualize(spot.tgba_determinize(a)))
|
|
|
|
|
|
def equiv(a, b):
|
|
return incl(a, b) and incl(b, a)
|
|
|
|
|
|
def do_split(f, in_list, out_list):
|
|
aut = spot.translate(f)
|
|
inputs = spot.buddy.bddtrue
|
|
for a in in_list:
|
|
inputs &= spot.buddy.bdd_ithvar(aut.get_dict().varnum(spot.formula(a)))
|
|
outputs = spot.buddy.bddtrue
|
|
for a in out_list:
|
|
outputs &= spot.buddy.bdd_ithvar(aut.get_dict().varnum(spot.formula(a)))
|
|
s = spot.split_2step(aut, inputs, outputs, False, False)
|
|
return aut, s
|
|
|
|
def str_diff(expect, obtained):
|
|
res = expect == obtained
|
|
if not res:
|
|
print("Expected:\n", expect, "\nbut obtained:\n", obtained)
|
|
return res
|
|
|
|
|
|
|
|
aut, s = do_split('(FG !a) <-> (GF b)', ['a'], ['b'])
|
|
assert equiv(aut, spot.unsplit_2step(s))
|
|
|
|
aut, s = do_split('GFa && GFb', ['a'], ['b'])
|
|
assert equiv(aut, spot.unsplit_2step(s))
|
|
assert str_diff("""HOA: v1
|
|
States: 3
|
|
Start: 0
|
|
AP: 2 "a" "b"
|
|
acc-name: generalized-Buchi 2
|
|
Acceptance: 2 Inf(0)&Inf(1)
|
|
properties: trans-labels explicit-labels trans-acc complete
|
|
properties: deterministic
|
|
spot-state-player: 0 1 1
|
|
--BODY--
|
|
State: 0
|
|
[0] 1
|
|
[!0] 2
|
|
State: 1
|
|
[!1] 0 {0}
|
|
[1] 0 {0 1}
|
|
State: 2
|
|
[!1] 0
|
|
[1] 0 {1}
|
|
--END--""", s.to_str() )
|
|
|
|
aut, s = do_split('! ((G (req -> (F ack))) && (G (go -> (F grant))))',
|
|
['go', 'req'], ['ack'])
|
|
assert equiv(aut, spot.unsplit_2step(s))
|
|
# FIXME s.to_str() is NOT the same on Debian stable and on Debian unstable
|
|
# we should investigate this
|
|
# assert s.to_str() == """HOA: v1
|
|
# States: 9
|
|
# Start: 0
|
|
# AP: 4 "ack" "req" "go" "grant"
|
|
# acc-name: Buchi
|
|
# Acceptance: 1 Inf(0)
|
|
# properties: trans-labels explicit-labels state-acc
|
|
# --BODY--
|
|
# State: 0
|
|
# [1&!2] 3
|
|
# [!1&!2] 4
|
|
# [1&2] 5
|
|
# [!1&2] 6
|
|
# State: 1
|
|
# [t] 7
|
|
# State: 2
|
|
# [t] 8
|
|
# State: 3
|
|
# [t] 0
|
|
# [!0] 1
|
|
# State: 4
|
|
# [t] 0
|
|
# State: 5
|
|
# [t] 0
|
|
# [!0] 1
|
|
# [!3] 2
|
|
# State: 6
|
|
# [t] 0
|
|
# [!3] 2
|
|
# State: 7 {0}
|
|
# [!0] 1
|
|
# State: 8 {0}
|
|
# [!3] 2
|
|
# --END--"""
|
|
|
|
aut, s = do_split('((G (((! g_0) || (! g_1)) && ((r_0 && (X r_1)) -> (F (g_0 \
|
|
&& g_1))))) && (G (r_0 -> F g_0))) && (G (r_1 -> F g_1))',
|
|
['r_0', 'r_1'], ['g_0', 'g_1'])
|
|
assert equiv(aut, spot.unsplit_2step(s))
|