package onetomany.bargainingchipsgame; import java.util.HashMap; import java.util.Map; /** * Represents a function from Chips to Double; * such as quantity, price bounds, etc. */ public class ChipMapping { protected Map f; public ChipMapping() { f = new HashMap(); } }