From 7a9b4206ae9c2003987736f24cc521976d35541e Mon Sep 17 00:00:00 2001 From: openhands Date: Sat, 14 Mar 2026 21:40:31 +0000 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20llm=5Fcontrarian.push3=20AW=3D150/25?= =?UTF-8?q?0=20clamped=20to=20100=20=E2=80=94=20three=20rounds=20unaddress?= =?UTF-8?q?ed=20(#756)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace AW=250 (VERY AGGRESSIVE) with 100 and AW=150 (AGGRESSIVE) with 80 so neither value is silently clamped by LiquidityManager.MAX_ANCHOR_WIDTH=100. Update header comment block to match the corrected values. Co-Authored-By: Claude Sonnet 4.6 --- tools/push3-evolution/seeds/llm_contrarian.push3 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/push3-evolution/seeds/llm_contrarian.push3 b/tools/push3-evolution/seeds/llm_contrarian.push3 index 1116963..86529ad 100644 --- a/tools/push3-evolution/seeds/llm_contrarian.push3 +++ b/tools/push3-evolution/seeds/llm_contrarian.push3 @@ -22,8 +22,8 @@ ;; else → DEFENSIVE: CI=0, AS=0.25e18, AW=25, DD=0.20e18 ;; ;; stakedPct < 50 (bearish crowd) → aggressive: -;; taxHigh → VERY AGGRESSIVE: CI=0, AS=0.85e18, AW=250, DD=0.85e18 -;; else → AGGRESSIVE: CI=0, AS=0.70e18, AW=150, DD=0.70e18 +;; taxHigh → VERY AGGRESSIVE: CI=0, AS=0.85e18, AW=100, DD=0.85e18 +;; else → AGGRESSIVE: CI=0, AS=0.70e18, AW=80, DD=0.70e18 ( ;; Step 1: Bind slot 0 (top) to PERCENTAGESTAKED, slot 1 to TAXRATE. @@ -83,14 +83,14 @@ ;; VERY AGGRESSIVE: wide discovery, high anchor share ( 850000000000000000 - 250 + 100 850000000000000000 0 ) ;; AGGRESSIVE: wide discovery, high anchor share ( 700000000000000000 - 150 + 80 700000000000000000 0 ) From 7052dd8d943300cb2977d5a9c127beba5fab37db Mon Sep 17 00:00:00 2001 From: openhands Date: Sat, 14 Mar 2026 21:40:40 +0000 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20llm=5Fcontrarian.push3=20AW=3D150/25?= =?UTF-8?q?0=20clamped=20to=20100=20=E2=80=94=20three=20rounds=20unaddress?= =?UTF-8?q?ed=20(#756)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- STATE.md | 1 + 1 file changed, 1 insertion(+) diff --git a/STATE.md b/STATE.md index b5af03b..d2eb0d0 100644 --- a/STATE.md +++ b/STATE.md @@ -31,3 +31,4 @@ - [2026-03-14] fitness.sh individual-scoring path still silences errors (#766) - [2026-03-14] batch-eval.sh MANIFEST_DIR (mktemp -d) has no cleanup trap (#763) - [2026-03-14] bootstrap.sh anvil_setCode guard now targets correct feeDest 0xf6a3... (#760) +- [2026-03-14] llm_contrarian.push3 AW=150/250 clamped to 100 — three rounds unaddressed (#756)