當前位置: 首頁>>代碼示例>>Java>>正文


Java IFormulaITE類代碼示例

本文整理匯總了Java中ap.parser.IFormulaITE的典型用法代碼示例。如果您正苦於以下問題:Java IFormulaITE類的具體用法?Java IFormulaITE怎麽用?Java IFormulaITE使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


IFormulaITE類屬於ap.parser包,在下文中一共展示了IFormulaITE類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: mkIte

import ap.parser.IFormulaITE; //導入依賴的package包/類
public ProverExpr mkIte(ProverExpr cond, ProverExpr thenExpr,
		ProverExpr elseExpr) {
	if (thenExpr instanceof TermExpr)
		return new TermExpr(new ITermITE(((FormulaExpr) cond).formula,
				((TermExpr) thenExpr).term, ((TermExpr) elseExpr).term),
				thenExpr.getType());
	else
		return new FormulaExpr(new IFormulaITE(
				((FormulaExpr) cond).formula,
				((FormulaExpr) thenExpr).formula,
				((FormulaExpr) elseExpr).formula));
}
 
開發者ID:SRI-CSL,項目名稱:bixie,代碼行數:13,代碼來源:PrincessProver.java

示例2: ifThenElse

import ap.parser.IFormulaITE; //導入依賴的package包/類
@Override
public IExpression ifThenElse(IExpression condition, IExpression t1, IExpression t2) {
  if (t1 instanceof IFormula) {
    return new IFormulaITE((IFormula) condition, (IFormula) t1, (IFormula) t2);
  } else {
    return new ITermITE((IFormula) condition, (ITerm) t1, (ITerm) t2);
  }
}
 
開發者ID:sosy-lab,項目名稱:java-smt,代碼行數:9,代碼來源:PrincessBooleanFormulaManager.java

示例3: getName

import ap.parser.IFormulaITE; //導入依賴的package包/類
private String getName(IExpression input) {
  if (input instanceof IAtom || input instanceof IConstant) {
    return input.toString();
  } else if (input instanceof IBinFormula) {
    return ((IBinFormula) input).j().toString();
  } else if (input instanceof IFormulaITE || input instanceof ITermITE) {
    // in princess ite representation is the complete formula which we do not want here
    return "ite";
  } else if (input instanceof IIntFormula) {
    return ((IIntFormula) input).rel().toString();
  } else if (input instanceof INot) {
    // in princess not representation is the complete formula which we do not want here
    return "not";
  } else if (input instanceof IFunApp) {
    return ((IFunApp) input).fun().name();
  } else if (input instanceof IPlus) {
    // in princess plus representation is the complete formula which we do not want here
    return "+";
  } else if (input instanceof ITimes) {
    // in princess times representation is the complete formula which we do not want here
    return "*";
  } else if (input instanceof IEpsilon) {
    // in princess epsilon representation is the complete formula which we do not want here
    return "eps";
  } else {
    throw new AssertionError("Unhandled type " + input.getClass());
  }
}
 
開發者ID:sosy-lab,項目名稱:java-smt,代碼行數:29,代碼來源:PrincessFormulaCreator.java


注:本文中的ap.parser.IFormulaITE類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。