⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ibitstring.java

📁 Java版的SAT求解器
💻 JAVA
字号:
/* * IBitString.java	1.1 05/10/27 * * Copyright 2004-2005 Positronic Software. * * */package positronic.satisfiability.bitstring;import java.util.List;import positronic.satisfiability.elements.IBooleanVariable;public interface IBitString extends Cloneable{	List asList();  Object clone() throws CloneNotSupportedException;  //boolean equals(Object anObject);  IBooleanVariable getBooleanVariable(int i) throws Exception;  IBooleanVariable[] getBVArray() throws Exception;  IBooleanVariable[] getBVArray(int size) throws Exception;  String getName();  //int index(IBooleanVariable b) throws Exception;  void setBooleanVariable(int i, IBooleanVariable ib) throws Exception;  //void setName(String name) throws Exception;  int size();  //boolean[] toBooleanArray() throws Exception;  //String toString();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -