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.
208 lines
5.4 KiB
208 lines
5.4 KiB
//==============================================================================
|
|
//
|
|
// Copyright (c) 2014-
|
|
// Authors:
|
|
// * Joachim Klein <klein@tcs.inf.tu-dresden.de> (TU Dresden)
|
|
// * Dave Parker <d.a.parker@cs.bham.ac.uk> (University of Birmingham/Oxford)
|
|
//
|
|
//------------------------------------------------------------------------------
|
|
//
|
|
// 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 common.IterableBitSet;
|
|
import acceptance.AcceptanceGeneric.ElementType;
|
|
import jdd.JDD;
|
|
import jdd.JDDNode;
|
|
import jdd.JDDVars;
|
|
|
|
/**
|
|
* A generic acceptance condition (based on JDD state sets).
|
|
* This is an AST of a boolean formula (conjunction and disjunction) over
|
|
* atoms of the form Inf(states), Inf(!states), Fin(states) and Fin(!states).
|
|
* <br>
|
|
* Semantics:
|
|
* Inf(states) <=> G F states
|
|
* Inf(!states) <=> G F !states
|
|
* Fin(states) <=> F G !states
|
|
* Fin(!states) <=> F G states
|
|
*/
|
|
public class AcceptanceGenericDD implements AcceptanceOmegaDD {
|
|
|
|
private ElementType kind;
|
|
private AcceptanceGenericDD left = null;
|
|
private AcceptanceGenericDD right = null;
|
|
private JDDNode states = null;
|
|
|
|
public AcceptanceGenericDD(AcceptanceGeneric acceptance, JDDVars ddRowVars)
|
|
{
|
|
switch(acceptance.getKind()) {
|
|
case AND:
|
|
case OR:
|
|
kind = acceptance.getKind();
|
|
left = (AcceptanceGenericDD) acceptance.getLeft().toAcceptanceDD(ddRowVars);
|
|
right = (AcceptanceGenericDD) acceptance.getRight().toAcceptanceDD(ddRowVars);
|
|
return;
|
|
case TRUE:
|
|
kind = ElementType.TRUE;
|
|
return;
|
|
case FALSE:
|
|
kind = ElementType.FALSE;
|
|
return;
|
|
case INF:
|
|
case INF_NOT:
|
|
case FIN:
|
|
case FIN_NOT:
|
|
kind = acceptance.getKind();
|
|
states = JDD.Constant(0);
|
|
for (int i : IterableBitSet.getSetBits(acceptance.getStates())) {
|
|
states = JDD.SetVectorElement(states, ddRowVars, i, 1.0);
|
|
}
|
|
return;
|
|
}
|
|
throw new UnsupportedOperationException("Unsupported operatator in generic acceptance condition");
|
|
}
|
|
|
|
/** Get the ElementType of this AST element */
|
|
public ElementType getKind()
|
|
{
|
|
return kind;
|
|
}
|
|
|
|
/** Get the left child of this AST element */
|
|
public AcceptanceGenericDD getLeft()
|
|
{
|
|
return left;
|
|
}
|
|
|
|
/** Get the right child of this AST element */
|
|
public AcceptanceGenericDD getRight()
|
|
{
|
|
return right;
|
|
}
|
|
|
|
/** Get a referenced copy of the state sets (if kind is one of INF, FIN, INF_NOT, FIN_NOT).
|
|
* <br>[ REFS: <i>result</i>, DEREFS: <i>none</i> ]
|
|
*/
|
|
public JDDNode getStates()
|
|
{
|
|
if (states != null) {
|
|
JDD.Ref(states);
|
|
}
|
|
return states;
|
|
}
|
|
|
|
@Override
|
|
public boolean isBSCCAccepting(JDDNode bscc)
|
|
{
|
|
switch(kind) {
|
|
case TRUE:
|
|
return true;
|
|
case FALSE:
|
|
return false;
|
|
case AND:
|
|
return left.isBSCCAccepting(bscc) && right.isBSCCAccepting(bscc);
|
|
case OR:
|
|
return left.isBSCCAccepting(bscc) || right.isBSCCAccepting(bscc);
|
|
case INF:
|
|
// bscc |= G F states?
|
|
// there exists a state in bscc and states
|
|
return JDD.AreIntersecting(states, bscc);
|
|
case INF_NOT:
|
|
// bscc_state |= G F !states?
|
|
// the BSCC intersects Not(states)
|
|
JDD.Ref(states);
|
|
return JDD.AreIntersecting(JDD.Not(states), bscc);
|
|
case FIN:
|
|
// bscc |= F G !states?
|
|
// the BSCC consists only of !states
|
|
return !JDD.AreIntersecting(states, bscc);
|
|
case FIN_NOT:
|
|
// bscc |= F G states?
|
|
// the BSCC consists entirely of states
|
|
JDD.Ref(states);
|
|
return !JDD.AreIntersecting(JDD.Not(states), bscc);
|
|
}
|
|
throw new UnsupportedOperationException("Unsupported operator in generic acceptance expression");
|
|
}
|
|
|
|
@Override
|
|
public String getSizeStatistics() {
|
|
return "generic acceptance with " + countAcceptanceSets() + " acceptance sets";
|
|
}
|
|
|
|
@Override
|
|
public AcceptanceType getType() {
|
|
return AcceptanceType.GENERIC;
|
|
}
|
|
|
|
@Override
|
|
@Deprecated
|
|
public String getTypeAbbreviated() {
|
|
return getType().getNameAbbreviated();
|
|
}
|
|
|
|
@Override
|
|
@Deprecated
|
|
public String getTypeName() {
|
|
return getType().getName();
|
|
}
|
|
|
|
@Override
|
|
public void clear() {
|
|
switch (kind) {
|
|
case TRUE:
|
|
case FALSE:
|
|
return;
|
|
case AND:
|
|
case OR:
|
|
left.clear();
|
|
right.clear();
|
|
return;
|
|
case INF_NOT:
|
|
case FIN:
|
|
case FIN_NOT:
|
|
case INF:
|
|
if (states != null) JDD.Deref(states);
|
|
states = null;
|
|
return;
|
|
}
|
|
throw new UnsupportedOperationException("Unsupported operator in generic acceptance expression");
|
|
}
|
|
|
|
/** Count the number of state sets in this acceptance condition */
|
|
public int countAcceptanceSets() {
|
|
switch(kind) {
|
|
case FALSE:
|
|
case TRUE:
|
|
return 0;
|
|
case INF:
|
|
case FIN:
|
|
case INF_NOT:
|
|
case FIN_NOT:
|
|
return 1;
|
|
case OR:
|
|
case AND:
|
|
return left.countAcceptanceSets() + right.countAcceptanceSets();
|
|
}
|
|
throw new UnsupportedOperationException("Unsupported operator in generic acceptance expression");
|
|
}
|
|
|
|
}
|