From af3b68ff2b0ecd9321405cd8c20a767161b0e118 Mon Sep 17 00:00:00 2001 From: Baptiste Lesquoy Date: Fri, 28 Jun 2024 11:47:05 +0700 Subject: [PATCH] Fixes warnings --- gama.core/tests/Basic Tests/models/Lists.experiment | 2 ++ .../Epidemiology/models/SIR with FSM Architecture.gaml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/gama.core/tests/Basic Tests/models/Lists.experiment b/gama.core/tests/Basic Tests/models/Lists.experiment index 1507e650df..ad0b602a4b 100644 --- a/gama.core/tests/Basic Tests/models/Lists.experiment +++ b/gama.core/tests/Basic Tests/models/Lists.experiment @@ -5,8 +5,10 @@ * Tags: */ +@no_warning model test_lists + species dummy { } diff --git a/gama.library/models/Toy Models/Epidemiology/models/SIR with FSM Architecture.gaml b/gama.library/models/Toy Models/Epidemiology/models/SIR with FSM Architecture.gaml index 064c4a2f36..29fb9691bf 100644 --- a/gama.library/models/Toy Models/Epidemiology/models/SIR with FSM Architecture.gaml +++ b/gama.library/models/Toy Models/Epidemiology/models/SIR with FSM Architecture.gaml @@ -64,7 +64,7 @@ experiment FirstModel type: gui { draw circle(1) color: (state = "I")? #red : ((state="R") ? #blue : #green); } } - display "Chart" { + display "Chart" type:2d { chart "Infected people" { loop s over: ["S","I","R"] { data s value: people count (each.state = s) color: colors[s];