All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.drools.verifier.RuleSolver Maven / Gradle / Ivy

There is a newer version: 9.44.0.Final
Show newest version
package org.drools.verifier;

import org.drools.verifier.components.OperatorDescr;
import org.drools.verifier.components.VerifierRule;

/**
 * Takes a list of Constraints and makes possibilities from them.
 * 
 * @author Toni Rikkola
 */
class RuleSolver extends Solver {

	private VerifierRule rule;

	public RuleSolver(VerifierRule rule) {
		super(OperatorDescr.Type.OR);
		this.rule = (VerifierRule) rule;
	}

	public VerifierRule getRule() {
		return rule;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy