View Javadoc

1   /*******************************************************************************
2    * SAT4J: a SATisfiability library for Java Copyright (C) 2004, 2012 Artois University and CNRS
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   * Contributors:
28   *   CRIL - initial API and implementation
29   *******************************************************************************/
30  package org.sat4j.pb.tools;
31  
32  import java.math.BigInteger;
33  import java.util.Iterator;
34  
35  import org.sat4j.core.Vec;
36  import org.sat4j.core.VecInt;
37  import org.sat4j.pb.IPBSolver;
38  import org.sat4j.pb.ObjectiveFunction;
39  import org.sat4j.specs.ContradictionException;
40  import org.sat4j.specs.IVec;
41  import org.sat4j.specs.IVecInt;
42  import org.sat4j.specs.TimeoutException;
43  
44  public class SteppedTimeoutLexicoDecoratorPB extends LexicoDecoratorPB {
45  
46      /**
47  	 * 
48  	 */
49      private static final long serialVersionUID = 1L;
50  
51      public SteppedTimeoutLexicoDecoratorPB(IPBSolver solver) {
52          super(solver);
53      }
54  
55      @Override
56      public boolean admitABetterSolution(IVecInt assumps)
57              throws TimeoutException {
58          decorated().setObjectiveFunction(this.objs.get(this.currentCriterion));
59          this.isSolutionOptimal = false;
60          try {
61              if (decorated().isSatisfiable(assumps, true)) {
62                  this.prevboolmodel = new boolean[nVars()];
63                  for (int i = 0; i < nVars(); i++) {
64                      this.prevboolmodel[i] = decorated().model(i + 1);
65                  }
66                  this.prevfullmodel = decorated().model();
67                  this.prevmodelwithinternalvars = decorated()
68                          .modelWithInternalVariables();
69                  calculateObjective();
70                  return true;
71              }
72              decorated().expireTimeout();
73              return manageUnsatCase();
74          } catch (TimeoutException te) {
75              if (this.currentCriterion == numberOfCriteria() - 1) {
76                  throw te;
77              }
78              mergeCurrentandNextCriteria();
79              if (this.prevConstr != null) {
80                  super.removeConstr(this.prevConstr);
81                  this.prevConstr = null;
82              }
83              try {
84                  fixCriterionValue();
85              } catch (ContradictionException ce) {
86                  throw new IllegalStateException(ce);
87              }
88              if (isVerbose()) {
89                  System.out.println(getLogPrefix()
90                          + "Partial timeout criterion number "
91                          + (this.currentCriterion + 1));
92              }
93              this.currentCriterion++;
94              calculateObjective();
95              decorated().expireTimeout();
96              return true;
97          }
98      }
99  
100     private void mergeCurrentandNextCriteria() {
101         ObjectiveFunction currentObj = this.objs.get(this.currentCriterion);
102         int currentObjSize = currentObj.getVars().size();
103         ObjectiveFunction nextObj = this.objs.get(this.currentCriterion + 1);
104         int nextObjSize = nextObj.getVars().size();
105         IVecInt newLits = new VecInt(currentObjSize + nextObjSize);
106         currentObj.getVars().copyTo(newLits);
107         nextObj.getVars().copyTo(newLits);
108         IVec<BigInteger> newCoeffs = new Vec<BigInteger>(currentObjSize
109                 + nextObjSize);
110         BigInteger coeffFactor = BigInteger.valueOf(nextObjSize).add(
111                 BigInteger.ONE);
112         for (Iterator<BigInteger> it = currentObj.getCoeffs().iterator(); it
113                 .hasNext();) {
114             newCoeffs.push(it.next().multiply(coeffFactor));
115         }
116         nextObj.getCoeffs().copyTo(newCoeffs);
117         this.objs.set(this.currentCriterion + 1, new ObjectiveFunction(newLits,
118                 newCoeffs));
119     }
120 
121 }