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.

8 lines
396 B

  1. // Minimise expected completion time given a bound on expected energy usage
  2. "num_time": multi(R{"time"}min=?[ C ], R{"energy"}<=1.45 [ C ])
  3. // Minimise expected energy usage given a bound on expected completion time
  4. "num_energy": multi( R{"energy"}min=?[ C ], R{"time"}<=1000[ C ])
  5. // Pareto query for assume-guarantee check
  6. "pareto": multi(R{"energy"}min=?[ C ], R{"time"}min=? [ C ])