Skip to content

Commit a130e2d

Browse files
committed
calc-confidence fix stop condition
* The stop condition in `calc-confidence` has been adjusted such that a complete update of the neighbor signal takes case even in case of scientists with very low confidence if evidence from nature is enabled
1 parent 205e995 commit a130e2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

protocol.nls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ to calc-confidence
7474
if g-depressed-confidence [stop]
7575
let stop? false
7676
ask turtles [
77-
if stop? [stop]
77+
if stop? and nature-evidence-frequency = 0 [stop]
7878
let belief-to-beat item ((mytheory + 1) mod 2) current-theory-info
7979
- strategy-threshold
8080
; not entirerly sure whether this cutoff at 0 is needed, but I've added it

0 commit comments

Comments
 (0)