Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* Copyright (c) 2015, Ecole des Mines de Nantes
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the .
* 4. Neither the name of the nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY ''AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.chocosolver.samples.integer;
import org.chocosolver.samples.AbstractProblem;
import org.chocosolver.solver.Solver;
import org.chocosolver.solver.constraints.Constraint;
import org.chocosolver.solver.constraints.IntConstraintFactory;
import org.chocosolver.solver.search.strategy.IntStrategyFactory;
import org.chocosolver.solver.variables.IntVar;
import org.chocosolver.solver.variables.VariableFactory;
import org.chocosolver.util.ESat;
import org.kohsuke.args4j.Option;
/**
* CSPLib prob024:
* "Consider two sets of the numbers from 1 to 4.
* The problem is to arrange the eight numbers in the two sets into a single sequence in which
* the two 1's appear one number apart,
* the two 2's appear two numbers apart,
* the two 3's appear three numbers apart,
* and the two 4's appear four numbers apart.
*
* The problem generalizes to the L(k,n) problem,
* which is to arrange k sets of numbers 1 to n,
* so that each appearance of the number m is m numbers on from the last.
*
* For example, the L(3,9) problem is to arrange 3 sets of the numbers 1 to 9 so that
* the first two 1's and the second two 1's appear one number apart,
* the first two 2's and the second two 2's appear two numbers apart, etc."
*
*
*
* @author Charles Prud'homme
* @since 19/08/11
*/
public class Langford extends AbstractProblem {
@Option(name = "-k", usage = "Number of sets.", required = false)
private int k = 3;
@Option(name = "-n", usage = "Upper bound.", required = false)
private int n = 9;
IntVar[] position;
Constraint[] lights;
Constraint alldiff;
@Override
public void createSolver() {
solver = new Solver("Langford number");
}
@Override
public void buildModel() {
// position of the colors
// position[i], position[i+k], position[i+2*k]... occurrence of the same color
position = VariableFactory.enumeratedArray("p", n * k, 0, k * n - 1, solver);
lights = new Constraint[(k - 1) * n + 1];
for (int i = 0; i < n; i++) {
for (int j = 0; j < this.k - 1; j++) {
lights[i + j * n] = IntConstraintFactory.arithm(VariableFactory.offset(position[i + j * n], i + 2), "=", position[i + (j + 1) * n]);
}
}
lights[(k - 1) * n] = IntConstraintFactory.arithm(position[0], "<", position[n * k - 1]);
solver.post(lights);
alldiff = IntConstraintFactory.alldifferent(position, "AC");
solver.post(alldiff);
}
@Override
public void configureSearch() {
solver.set(IntStrategyFactory.minDom_UB(position));
}
@Override
public void solve() {
solver.findSolution();
}
@Override
public void prettyOut() {
StringBuilder st = new StringBuilder(String.format("Langford's number (%s,%s)\n", k, n));
if (solver.isFeasible() == ESat.TRUE) {
int[] values = new int[k * n];
for (int i = 0; i < k; i++) {
for (int j = 0; j < n; j++) {
values[position[i * n + j].getValue()] = j + 1;
}
}
st.append("\t");
for (int i = 0; i < values.length; i++) {
st.append(values[i]).append(" ");
}
st.append("\n");
} else {
st.append("\tINFEASIBLE");
}
System.out.println(st.toString());
}
public static void main(String[] args) {
new Langford().execute(args);
}
}