autfilt: add a --remove-ap option

* src/tgbaalgos/remprop.cc, src/tgbaalgos/remprop.hh: New files.
* src/tgbaalgos/Makefile.am: Add them.
* src/tgbatest/remprop.test: New test.
* src/tgbatest/Makefile.am: Add it.
* src/bin/autfilt.cc: Implement the option.
* doc/org/autfilt.org: Document it.
This commit is contained in:
Alexandre Duret-Lutz 2015-03-24 17:58:39 +01:00
parent e592832a3e
commit 4553ac06cf
7 changed files with 497 additions and 32 deletions

44
src/tgbaalgos/remprop.hh Normal file
View file

@ -0,0 +1,44 @@
// -*- coding: utf-8 -*-
// Copyright (C) 2015 Laboratoire de Recherche et Développement de
// l'Epita (LRDE).
//
// 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/>.
#pragma once
#include <vector>
#include "ltlast/atomic_prop.hh"
#include "tgba/tgbagraph.hh"
namespace spot
{
class SPOT_API remove_ap
{
std::set<const ltl::atomic_prop*> props_exist;
std::set<const ltl::atomic_prop*> props_pos;
std::set<const ltl::atomic_prop*> props_neg;
public:
~remove_ap();
void add_ap(const char* ap_csv);
bool empty() const
{
return props_exist.empty() && props_pos.empty() && props_neg.empty();
}
tgba_digraph_ptr strip(const_tgba_digraph_ptr aut) const;
};
}