
net.sf.tweety.math.opt.solver.TabuSearchOnConstrProb Maven / Gradle / Ivy
/*
* This file is part of "TweetyProject", a collection of Java libraries for
* logical aspects of artificial intelligence and knowledge representation.
*
* TweetyProject is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*
* Copyright 2020 The TweetyProject Team
*/
package net.sf.tweety.math.opt.solver;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
import java.util.Random;
import net.sf.tweety.math.opt.problem.*;
import net.sf.tweety.math.term.FloatConstant;
import net.sf.tweety.math.term.Variable;
import net.sf.tweety.math.term.Term;
/**
* implements a simple Tabu Search without long term memory
* for optimization problems
* @author Sebastian Franke
*
*/
public class TabuSearchOnConstrProb extends Solver{
/**the forbidden solutions*/
private ArrayList
© 2015 - 2025 Weber Informatics LLC | Privacy Policy