View Javadoc

1   /*******************************************************************************
2    * SAT4J: a SATisfiability library for Java Copyright (C) 2004-2008 Daniel Le Berre
3    *
4    * All rights reserved. This program and the accompanying materials
5    * are made available under the terms of the Eclipse Public License v1.0
6    * which accompanies this distribution, and is available at
7    * http://www.eclipse.org/legal/epl-v10.html
8    *
9    * Alternatively, the contents of this file may be used under the terms of
10   * either the GNU Lesser General Public License Version 2.1 or later (the
11   * "LGPL"), in which case the provisions of the LGPL are applicable instead
12   * of those above. If you wish to allow use of your version of this file only
13   * under the terms of the LGPL, and not to allow others to use your version of
14   * this file under the terms of the EPL, indicate your decision by deleting
15   * the provisions above and replace them with the notice and other provisions
16   * required by the LGPL. If you do not delete the provisions above, a recipient
17   * may use your version of this file under the terms of the EPL or the LGPL.
18   * 
19   * Based on the original MiniSat specification from:
20   * 
21   * An extensible SAT solver. Niklas Een and Niklas Sorensson. Proceedings of the
22   * Sixth International Conference on Theory and Applications of Satisfiability
23   * Testing, LNCS 2919, pp 502-518, 2003.
24   *
25   * See www.minisat.se for the original solver in C++.
26   * 
27   *******************************************************************************/
28  package org.sat4j.reader;
29  
30  import java.io.IOException;
31  import java.io.PrintWriter;
32  
33  import org.sat4j.core.VecInt;
34  import org.sat4j.specs.ContradictionException;
35  import org.sat4j.specs.IProblem;
36  import org.sat4j.specs.ISolver;
37  import org.sat4j.specs.IVecInt;
38  import org.sat4j.tools.GateTranslator;
39  
40  /**
41   * Reader for the ASCII And Inverter Graph format defined by Armin Biere.
42   * 
43   * @author daniel
44   * 
45   */
46  public class AAGReader extends Reader {
47  
48  	private final static int FALSE = 0;
49  
50  	private final static int TRUE = 1;
51  
52  	private final GateTranslator solver;
53  
54  	private int maxvarid;
55  
56  	private int nbinputs;
57  
58  	AAGReader(ISolver s) {
59  		solver = new GateTranslator(s);
60  	}
61  
62  	@Override
63  	public String decode(int[] model) {
64  		StringBuffer stb = new StringBuffer();
65  		for (int i = 0; i < nbinputs; i++) {
66  			stb.append(model[i] > 0 ? 1 : 0);
67  		}
68  		return stb.toString();
69  	}
70  
71  	@Override
72  	public void decode(int[] model, PrintWriter out) {
73  		for (int i = 0; i < nbinputs; i++) {
74  			out.print(model[i] > 0 ? 1 : 0);
75  		}
76  	}
77  
78  	@Override
79  	public IProblem parseInstance(java.io.InputStream in)
80  			throws ParseFormatException, ContradictionException, IOException {
81  		EfficientScanner scanner = new EfficientScanner(in);
82  		String prefix = scanner.next();
83  		if (!"aag".equals(prefix)) {
84  			throw new ParseFormatException("AAG format only!");
85  		}
86  		maxvarid = scanner.nextInt();
87  		nbinputs = scanner.nextInt();
88  		int nblatches = scanner.nextInt();
89  		int nboutputs = scanner.nextInt();
90  		if (nboutputs > 1) {
91  			throw new ParseFormatException(
92  					"CNF conversion allowed for single output circuit only!");
93  		}
94  		int nbands = scanner.nextInt();
95  		solver.newVar(maxvarid + 1);
96  		solver.setExpectedNumberOfClauses(3 * nbands + 2);
97  		readInput(nbinputs, scanner);
98  		assert nblatches == 0;
99  		if (nboutputs > 0) {
100 			int output0 = readOutput(nboutputs, scanner);
101 			readAnd(nbands, output0, scanner);
102 		}
103 		return solver;
104 	}
105 
106 	private void readAnd(int nbands, int output0, EfficientScanner scanner)
107 			throws ContradictionException, IOException, ParseFormatException {
108 
109 		for (int i = 0; i < nbands; i++) {
110 			int lhs = scanner.nextInt();
111 			int rhs0 = scanner.nextInt();
112 			int rhs1 = scanner.nextInt();
113 			solver.and(toDimacs(lhs), toDimacs(rhs0), toDimacs(rhs1));
114 		}
115 		solver.gateTrue(maxvarid + 1);
116 		solver.gateTrue(toDimacs(output0));
117 	}
118 
119 	private int toDimacs(int v) {
120 		if (v == FALSE) {
121 			return -(maxvarid + 1);
122 		}
123 		if (v == TRUE) {
124 			return maxvarid + 1;
125 		}
126 		int var = v >> 1;
127 		if ((v & 1) == 0) {
128 			return var;
129 		}
130 		return -var;
131 	}
132 
133 	private int readOutput(int nboutputs, EfficientScanner scanner)
134 			throws IOException, ParseFormatException {
135 		IVecInt outputs = new VecInt(nboutputs);
136 		for (int i = 0; i < nboutputs; i++) {
137 			outputs.push(scanner.nextInt());
138 		}
139 		return outputs.get(0);
140 	}
141 
142 	private IVecInt readInput(int numberOfInputs, EfficientScanner scanner)
143 			throws IOException, ParseFormatException {
144 		IVecInt inputs = new VecInt(numberOfInputs);
145 		for (int i = 0; i < numberOfInputs; i++) {
146 			inputs.push(scanner.nextInt());
147 		}
148 		return inputs;
149 	}
150 }