icertificate.java
来自「Java版的SAT求解器」· Java 代码 · 共 28 行
JAVA
28 行
/* * ICertificate.java * * Copyright 2004-2005 Positronic Software. * */package positronic.satisfiability.elements;import positronic.satisfiability.exceptions.*;import positronic.util.*; /** The <code>ICertificate</code> interface must be implemented by any class * definition of <code>Certificate</code> contempleted as an alternative to the * <code>Certificate</code> class provided by this package. * * @author Kerry Michael Soileau * @version 1.1, 05/07/22 */public interface ICertificate{ void add(IBooleanVariable x, boolean val) throws BooleanLiteralException; boolean containsBooleanVariable(IBooleanVariable x) throws BooleanLiteralException; ArrayListSet getBooleanLiterals() throws BooleanLiteralException; boolean getValue(IBooleanVariable x) throws BooleanLiteralException; void setBooleanLiterals(ArrayListSet booleanLiterals); String toString();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?