package io.trygvis.acme.planning.machine; public class ScalewayInstance { public final String kind; // Euros / hour public final double cost; public final int cpu; public final int memory; public int multiplicand; public ScalewayInstance(String kind, double cost, int cpu, int memory) { this.kind = kind; this.cost = cost; this.cpu = cpu; this.memory = memory; this.multiplicand = cpu * memory; } @Override public String toString() { return kind; } }