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

net.sf.tweety.preferences.aggregation.PreferenceAggregator Maven / Gradle / Ivy

The newest version!
/*
 *  This file is part of "Tweety", a collection of Java libraries for
 *  logical aspects of artificial intelligence and knowledge representation.
 *
 *  Tweety 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 2016 The Tweety Project Team 
 */
package net.sf.tweety.preferences.aggregation;

import java.util.List;

import net.sf.tweety.preferences.PreferenceOrder;

/**
 * This interface is meant to be used for the aggregation of some generic preference orders
 * 
 * @author Bastian Wolf
 * 
 * @param 
 *            generic preference order type
 */

public interface PreferenceAggregator {

	/**
	 * Abstract class for implementation of different aggregation and scoring methods
	 * @param input the array of preference orders to be aggregated
	 * @return the final result as a preference order
	 */
	public PreferenceOrder aggregate(List> input);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy