@@ -1012,8 +1012,7 @@ struct ResourceEconomy {
10121012 }();
10131013 meta[" params" ] = {
10141014 {" needDeltaAbsMin" , 8.0 },
1015- {" socialSuccessDeltaFrac" , 0.25 },
1016- {" notes" , " eventline is sparse facts for one observed agent; not a full log" },
1015+ {" notes" , " eventline is sparse facts for one observed agent; no outcome inference is performed" },
10171016 };
10181017 (*eventlineOut) << meta.dump () << " \n " ;
10191018 }
@@ -1141,13 +1140,12 @@ struct ResourceEconomy {
11411140 }
11421141 const float delta = socialNow - eventlineState.socialPrevNeedValue ;
11431142 const float intended = std::max (0 .0f , eventlineState.socialIntendedRelief );
1144- const float successDeltaThreshold = -0 .25f * intended;
1145- const bool inferredSuccess = (intended > 0 .0f ) ? (delta <= successDeltaThreshold) : (delta < -0 .5f );
11461143 emit (" social_attempt_end" ,
11471144 {{" partnerEntityId" , eventlineState.socialPartner },
11481145 {" intendedRelief" , intended},
1149- {" socialDelta" , delta},
1150- {" inferredSuccess" , inferredSuccess}});
1146+ {" socialStart" , eventlineState.socialPrevNeedValue },
1147+ {" socialEnd" , socialNow},
1148+ {" socialDelta" , delta}});
11511149 eventlineState.socialInProgress = false ;
11521150 eventlineState.socialPartner = 0 ;
11531151 eventlineState.socialIntendedRelief = 0 .0f ;
0 commit comments