No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Encoding.java 252B

1234567891011121314
  1. package jobshop.encodings;
  2. import jobshop.Instance;
  3. public abstract class Encoding {
  4. public final Instance instance;
  5. public Encoding(Instance instance) {
  6. this.instance = instance;
  7. }
  8. public abstract Schedule toSchedule();
  9. }