formula.java
来自「Java版的SAT求解器」· Java 代码 · 共 35 行
JAVA
35 行
/* * Formula.java 1.0 05/04/14 * * Copyright 2004-2005 Positronic Software. * * */package positronic.satisfiability.elements;/** * A class which represents a collection of IClause objects, and which amounts * to a satisfiability problem. Formula is essentially a ArrayList of IClause * objects, and additionally provides several useful methods for combining * Formula objects, especially performing logical operations such as * <tt>and</tt> and <tt>or</tt> on such objects. * * This class is the superclass of numerous generic satisfiability problems. * * @author Kerry Michael Soileau * <blockquote><pre> * ksoileau@yahoo.com * http://web.wt.net/~ksoileau/index.htm * </pre></blockquote> * @version 1.0, 05/04/14 * @see IProblem * @see Problem * @see IFormula */public class Formula extends Problem implements IFormula{ private static final long serialVersionUID = 1L;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?