From 0900bbaabd8c8fbee9211e44406c0ecbfd4ada29 Mon Sep 17 00:00:00 2001 From: Pagwin Date: Tue, 9 Jun 2026 16:58:56 -0400 Subject: [PATCH] accidental format + added a warning --- templates/solver.html | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/templates/solver.html b/templates/solver.html index 40335e5..7feb2b7 100644 --- a/templates/solver.html +++ b/templates/solver.html @@ -335,12 +335,12 @@ overflow-x: auto; } - details > summary { + details>summary { cursor: pointer; user-select: none; } - details > summary:hover { + details>summary:hover { color: #667eea; } @@ -453,10 +453,16 @@

Resource Constraints (Optional)

- Enforce minimum resource levels at specific steps. Examples: E[3] >= 50, B[2] + S[2] >= 100 + Enforce minimum resource levels at specific steps. Examples: E[3] >= 50, B[2] + S[2] >= 100

+

Warning: all resources are multiplied by 10 internally so + constraints should also be multiplied by 10 e.g. E[2]>=10 checks if electrum is + greater or equal than 1 not 10 on day 2

- +