net.sourceforge.jasa.agent.ProfitFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jasa Show documentation
Show all versions of jasa Show documentation
The Java Auction Simulator API (JASA) is a framework for building agent-based models of auction markets.
The newest version!
package net.sourceforge.jasa.agent;
import net.sourceforge.jasa.market.Market;
public interface ProfitFunction {
double calculateProfit(AbstractTradingAgent abstractTradingAgent, Market auction, int quantity, double price);
}