Package solver.propagation

Examples of solver.propagation.PropagationTrigger


    final PropagationTrigger trigger; // an object that starts the propagation

    public TwoBucketPropagationEngine(Solver solver) {
        this.exception = new ContradictionException();
        this.environment = solver.getEnvironment();
        this.trigger = new PropagationTrigger(this, solver);

        variables = solver.getVars();
        List<Propagator> _propagators = new ArrayList<>();
        Constraint[] constraints = solver.getCstrs();
        int nbProp = 0;
View Full Code Here



    public SevenQueuesPropagatorEngine(Solver solver) {
        this.exception = new ContradictionException();
        this.environment = solver.getEnvironment();
        this.trigger = new PropagationTrigger(this, solver);

        variables = solver.getVars();
        List<Propagator> _propagators = new ArrayList<>();
        Constraint[] constraints = solver.getCstrs();
        int nbProp = 0;
View Full Code Here

TOP

Related Classes of solver.propagation.PropagationTrigger

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.