You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
2.1 KiB
67 lines
2.1 KiB
//==============================================================================
|
|
//
|
|
// Copyright (c) 2014-
|
|
// Authors:
|
|
// * Joachim Klein <klein@tcs.inf.tu-dresden.de> (TU Dresden)
|
|
//
|
|
//------------------------------------------------------------------------------
|
|
//
|
|
// This file is part of PRISM.
|
|
//
|
|
// PRISM 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 2 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// PRISM 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 PRISM; if not, write to the Free Software Foundation,
|
|
// Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
//
|
|
//==============================================================================
|
|
|
|
package acceptance;
|
|
|
|
import jdd.JDDNode;
|
|
|
|
/**
|
|
* Generic interface for an omega-regular acceptance condition (BDD-based).
|
|
*/
|
|
public interface AcceptanceOmegaDD
|
|
{
|
|
/** Returns true if the bottom strongly connected component (BSSC)
|
|
* given by bscc_states is accepting for this acceptance condition.
|
|
* <br>[ REFS: <i>none</i>, DEREFS: <i>none</i> ]
|
|
**/
|
|
public boolean isBSCCAccepting(JDDNode bscc_states);
|
|
|
|
/**
|
|
* Get a string describing the acceptance condition's size,
|
|
* i.e. "x Rabin pairs", etc.
|
|
*/
|
|
public String getSizeStatistics();
|
|
|
|
/** Returns the AcceptanceType of this acceptance condition */
|
|
public AcceptanceType getType();
|
|
|
|
/** Returns the type of this acceptance condition as a String,
|
|
* i.e., "R" for Rabin
|
|
*/
|
|
@Deprecated
|
|
public String getTypeAbbreviated();
|
|
|
|
/**
|
|
* Clear the resources used by this acceptance condition.
|
|
* Call to ensure that the JDD based state sets actually get
|
|
* dereferenced.
|
|
*/
|
|
void clear();
|
|
|
|
/** Returns a full name for this acceptance condition */
|
|
@Deprecated
|
|
public String getTypeName();
|
|
}
|