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

fr.inria.edelweiss.rif.ast.Exists Maven / Gradle / Ivy

package fr.inria.edelweiss.rif.ast;

import java.util.Vector;

import fr.inria.edelweiss.rif.api.IFormula;

public class Exists extends Quantifier implements IFormula {
	
	private IFormula formula ;
	
	private Exists(Vector vars, IFormula formula) {
		super(vars);
		this.formula = formula ;
	}
	
	public IFormula getFormula() {
		return this.formula ;
	}
	
	public static Exists create(Vector vars, IFormula formula) {
		return new Exists(vars, formula) ;
	}


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy