Five hooks recaptured, build recap-7584bad-20260908T0615Z, no source change. - ProcessResearch: the over-budget event is now a compare divergence (side.events.after.v.next_id orig=4 ours=3) instead of a 609 KB save diff. 15 calls over 5 turns, 3 diverged, RNG matched 15/15. - ComputeBudget: 4284 compared, 0 diverged, guard quiet - but only 20 distinct states and 13 of 22 slots always zero. - MoveFleet: 8 of 45 calls diverge by 1 ULP of position. B4's clean verdict was a one-sample verdict. - First guarded captures for OnTechResearched (RollResearchEvent draw fired and matched), the colony turn and MoveFleet. - Guards mapped SetResearched live and found an undeclared ObservedTech append. VM140 released at the main menu, hooks=trace.
188 lines
1.2 MiB
188 lines
1.2 MiB
{"meta":{"format":1,"build":"recap-7584bad-20260908T0615Z","exe_sha256":"970b7de729956a53094c7eb98aba4270aee98e2fed5daf0d39e290013c90c841","started":"2026-09-08T06:47:07Z","inline_max":256,"hooks":{"Shim::SelfTest::Fill":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"complete","why":"Fill writes buf[0..n) and nothing else; the whole range is a declared region","unmodelled":[]}},"Mars::GlobalConsts::LoadFile":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"erases each consumed key from the caller's std::map","risk":"medium","why":"the map is a LoadAll temporary; declaring a red-black tree as a region is not possible before the call. First-occurrence-wins is reproduced in game::config::apply instead, so the *effect* is modelled, the container is not","mitigation":"LoadAll's post-state would have to be hooked to see it"},{"what":"writes three kinds of line to the game log (unrecognised key, applied key, expected-but-not-found)","risk":"low","why":"log text is not part of the simulation state","mitigation":""},{"what":"opens the file through the VFS and allocates/releases a refcounted buffer","risk":"low","why":"ours performs the same two calls, so allocation behaviour matches by construction rather than by comparison","mitigation":""},{"what":"String slots assign through the engine's own std::string, leaking one heap block per long string in compare mode","risk":"low","why":"start-up only; documented in docs/M1.md","mitigation":""}]}},"Game::ServerPlayer::ComputeBudget":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"slots 1, 2, 3, 4, 7 and 11 are produced by callees this milestone does not model (per-system output, trade, ship-carried population, a second manager, the build-queue spend)","risk":"high","why":"they are copied out of the original's own output and back into the same slots, so they match BY CONSTRUCTION and prove nothing","mitigation":"declared input boundary; see budget_inputs.h"},{"what":"ServerSystem::ComputeOutput repairs damaged ships in orbit","risk":"high","why":"replace mode runs the original a second time on a scratch Budget to harvest the six unmodelled slots, so that repair happens TWICE per turn in replace mode and nothing in the trace would show it","mitigation":"guard:budget_object does not reach the ships; unverified"},{"what":"the difficulty-mods row from StrategyServer::GetDifficultyMods","risk":"medium","why":"not reachable from a ServerPlayer, so the two relevant entries are fitted constants measured from the B1 trace rather than snapshotted inputs","mitigation":""},{"what":"the research-allocation vector's heap block","risk":"low","why":"only the element count is compared; the three words are heap pointers the default policy ignores","mitigation":""}]}},"Game::WeaponDictionary::Init":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"LoadWeapon -> WeaponDef::ParseScript registers each weapon's name with the string table and resolves `requires` against the live TechTree","risk":"high","why":"per-file parsing is M3 scope; ours delegates to the game's own LoadWeapon, so a compare run performs the registration a SECOND time and neither the string table nor the tech tree is a declared region","mitigation":"suspected cause of the sibling section hook's compare crash (docs/M2.md)"},{"what":"allocates 123 WeaponDef objects (0x278 bytes each) on the game heap","risk":"low","why":"the definitions do not exist when the hook is entered, so they cannot be a before-snapshot; the dictionary region compares them by id/name/path","mitigation":""},{"what":"the word at dictionary+0x14","risk":"low","why":"not modelled; emitted as an opaque pointer, which the default policy ignores -- a change is visible in a trace but never a divergence","mitigation":"guard:dict"},{"what":"writes lines to the game log for a missing manifest","risk":"low","why":"log text is not simulation state","mitigation":""},{"what":"std::sort tie order for equal weapon names","risk":"low","why":"msvc_sort.h replays MSVC 2010's introsort, but the shipped data has no tied names, so the tie rule is unexercised rather than verified","mitigation":""}]}},"Game::SectionDictionary::SectionDictionary":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"LoadSection registers each section with the string table and the live TechTree, and may append to the dictionary's own vector","risk":"high","why":"M3 scope; ours delegates to the game's LoadSection after the original has already built all 885 definitions, so the second pass registers duplicates -- the leading hypothesis for this hook's compare-mode crash","mitigation":"see docs/M2.md; compare mode for this hook is not safe to run"},{"what":"post-load validation pass over every definition's @-token against the string table","risk":"medium","why":"runs after the loop and touches no declared region","mitigation":""},{"what":"allocates 885 SectionDef objects (0x3d8 bytes each) on the game heap","risk":"low","why":"they do not exist at hook entry; compared by index/species/id/token","mitigation":""},{"what":"the word at dictionary+0x14","risk":"low","why":"not modelled; emitted as an ignored pointer","mitigation":"guard:dict"},{"what":"the before-snapshot of the object is uninitialised heap","risk":"medium","why":"the hook is on the constructor, so `before` is meaningless and only `after` carries information","mitigation":""}]}},"Game::TechTree::ProcessResearch":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"posts EVENT_RESEARCH_OVERBUDGET on the owner's EventStorage in the same branch that sets node.flag = 2","risk":"high","why":"the message text is composed from the tech name, so ours cannot synthesise it; it would have to be posted through the game's own event API. This is the defect that made a clean compare false: replace mode's autosave differed from the oracle by exactly this one event","mitigation":"region:events (EvNxID now diverges instead of passing silently)"},{"what":"posts EVENT_TECHS_UNLOCKED for nodes that became available this turn","risk":"medium","why":"the trailing unlock loop makes no draw and writes no node, but it does build a names list and post an event","mitigation":"region:events"},{"what":"TechTree::SetResearched on completion: the turn/order stamps, the child unlock cascade, the recursive research of zero-cost children, and the owner's OnTechResearched callback","risk":"high","why":"its own milestone (B2); the callback writes live player state that compare mode must not touch, and it consumes one extra RNG word","mitigation":"guard:player, guard:tree_header"},{"what":"bumps the tree's completion-order counter (TechTree+0x20)","risk":"medium","why":"part of SetResearched; the per-node `order` word is compared but the counter it comes from was not a region","mitigation":"guard:tree_header"},{"what":"writes a completion line to the game log","risk":"low","why":"log text is not simulation state","mitigation":""}]}},"Game::ServerPlayer::OnTechResearched":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"posts EVENT_RESEARCH_COMPLETE / _UNDERBUDGET / _TEMPERANCE on the owner's EventStorage when !silent","risk":"high","why":"the same class of write as B3's defect, and this hook has no replace-mode oracle that could catch it: gotcha 4 in docs/B2.md says a changed save hash on a completion turn is expected and therefore not a finding","mitigation":"guard:player (EventStorage is inline at ServerPlayer+0x29c)"},{"what":"writes every owned system's AI flag (CCC_AIVrus / CCC_AISlv), re-evaluates the arcology civilian cap, cures addiction and clears plague across systems AND ships","risk":"high","why":"writes through pointers to other objects; compare mode must not touch live state, and no region reaches them","mitigation":""},{"what":"the pending plague-cure roll (ServerPlayer::RollResearchEvent)","risk":"high","why":"it draws exactly one word from the strategic generator unconditionally; running it in compare mode would consume real randomness. The two words it guards are still cleared and the record says whether it would have fired","mitigation":"this is the extra draw B3 observed on a completion"},{"what":"TechTree::SetResearched for the Zuul boarding-pod grant","risk":"medium","why":"it would mutate the live tree, and it recurses","mitigation":""},{"what":"allocates or frees the node-bore block at ServerPlayer+0x308","risk":"medium","why":"ours has no allocator the game's runtime could free, so replace mode calls the game's own updater -- which means replace mode never exercises our node-bore selection at all","mitigation":"region:node_bore, declared only when the block already exists"}]}},"Game::ServerSystem::ProcessTurn":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"the addiction sweep raises MoraleEvents, which are constructed and appended to the system's capped morale history","risk":"high","why":"the same class of write as B3's defect. sim::ProcessColonyTurn does compute the morale events (ColonyTurnResult), but the hook never emits them: DescribeMoraleEvents is dead code, so they are neither compared nor logged","mitigation":"guard:system"},{"what":"every callee: the plague pass, imperial and civilian growth, the resource debit, in-orbit refuel, slaves, rebellion and the build queue","risk":"high","why":"declared input boundary -- ProcessTurn is a dispatcher and only the words it writes itself are modelled. The callees raise EVENT_SLAVES_DEAD, EVENT_SYSTEM_REBELLION_CONTINUES, the plague events and SEBuildCompleted, create ships and bump per-player ShipRecords counters","mitigation":"guard:system covers the system object only, not the other objects"},{"what":"ApplyInfraBonus / ApplyPopBonus read the owner's home-system id, and the build queue writes the owning ServerPlayer","risk":"medium","why":"writes through a pointer to another object; no region reaches the player","mitigation":""},{"what":"ProcessRebellion is the pass's only RNG consumer and its draw count is data-dependent","risk":"low","why":"the generator IS a declared region, so a moved post-state is visible and names the system whose rebellion fired -- it is reported, not modelled","mitigation":""},{"what":"replace mode is refused for this hook","risk":"medium","why":"our side models the dispatcher's own writes and none of the callees, so a replace run would silently skip a colony's whole turn. There is therefore no oracle layer behind the compare for this hook","mitigation":""}]}},"Game::StrategyServer::MoveFleet":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"on arrival: dispatches SEFleetArrived and runs one of three arrival handlers by destination kind (enter system / join fleet / stop at point)","risk":"high","why":"declared input boundary -- an arriving call is expected to differ in all of it, and none of it is declared, so the compare says nothing about arrivals","mitigation":"guard:fleet sees the fleet's own words; the event and the system do not"},{"what":"on departure: cancels every still-acting ship (with a log line each) and calls ServerSystem::FleetDeparts, which rewrites the system's ownership bits","risk":"high","why":"writes through pointers to ships and to the system","mitigation":""},{"what":"the tanker top-up refuels other ships in the fleet","risk":"medium","why":"the per-ship range regions would show it, but ours does not model it, so a fleet with a tanker diverges for a known reason","mitigation":""},{"what":"a node-line waypoint's step comes from the stutter profile","risk":"medium","why":"NodeLineStep / BuildStutterSegments are written and unit-tested but not wired in; the hook steps every waypoint type as speed x dt, so a node-line leg is knowingly mis-stepped and only its type is recorded","mitigation":"declared gap: docs/B4.md"},{"what":"a missed probabilistic jump scatters the fleet in a random direction","risk":"medium","why":"the direction is a second draw whose mapping is not modelled; ours leaves the position alone and reports the scatter distance, so the generator region diverges by one word on a miss","mitigation":""},{"what":"the route revalidation and the waypoint list itself","risk":"medium","why":"declared input boundary; the waypoint vector is not a region","mitigation":""}]}},"Game::StrategyServer::ProcessFleetMovement":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"`ours` re-reads the LIVE fleet list after the original has run","risk":"high","why":"the gate-traffic total is computed by the original at the very end of the pass, so a pre-call snapshot would diverge for the wrong reason. It breaks the compare invariant that ours never touches live memory, and it makes this hook's verdict partly self-fulfilling: the input to our arithmetic is the original's own post-move state","mitigation":""},{"what":"drives MoveFleet up to five times per fleet","risk":"high","why":"every undeclared effect of MoveFleet happens inside this call too; the pass schedule is recorded in the arguments but never compared","mitigation":""},{"what":"writes FPdpos into every fleet and clears flags 0x2 and 0x100 on every fleet","risk":"high","why":"no region covers the fleets, only the players' gate-traffic words","mitigation":""},{"what":"OnFleetArrived posts EVENT_FLEET_ARRIVED","risk":"high","why":"the same class of write as B3's defect, and there is no replace mode for this hook, so nothing behind the compare could catch it either","mitigation":""},{"what":"the original accumulates by player->index but writes back by the player's position in the server vector, into a fixed 32-int array with no bounds check","risk":"medium","why":"a real latent bug in the original that our side reproduces only while index == position; the reference save never separates them","mitigation":""},{"what":"PassSchedule() is never called by the hook, and FleetSummary::targetFleetId / relation are never filled","risk":"medium","why":"the header claims ours predicts the call order for a trace to check; that prediction is not actually emitted","mitigation":""}]}}}}}
|
|
{"ts":256133112,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":0,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x0e945738","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":912,"n":"fleet_id"},{"t":"i32","v":7,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[1].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[2].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[3].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[4].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[5].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[6].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[7].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[8].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[9].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[1].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[2].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[3].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[4].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[5].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[6].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[7].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[8].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[9].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":256133986,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":1,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x0e945860","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1120,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":256134240,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":2,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x209113e8","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1152,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":256134492,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":3,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x209119b0","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1264,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":256134793,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":4,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x20911ad8","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1296,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":256134983,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":5,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x20911510","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1360,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":256135855,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":6,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c7648","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":34,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.5634995},"y":{"t":"f32","v":5.97172451},"z":{"t":"f32","v":1.56473362}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":20}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":18}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.5634995},"y":{"t":"f32","v":5.97172451},"z":{"t":"f32","v":1.56473362}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":18}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":160,"len":4},{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":3}}
|
|
{"ts":256138052,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":7,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c0ad8","n":"system"},{"t":"i32","v":0,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":256138547,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":8,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c0db8","n":"system"},{"t":"i32","v":1,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":65536}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":256138974,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":9,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c1098","n":"system"},{"t":"i32","v":2,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":256139443,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":10,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac258","n":"system"},{"t":"i32","v":3,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":256139927,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":11,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac538","n":"system"},{"t":"i32","v":4,"n":"system_index"},{"t":"i32","v":0,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":2}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":1},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":1},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":2}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":1},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[{"region":"system","off":420,"len":12}],"n":1}}
|
|
{"ts":256140321,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":12,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac818","n":"system"},{"t":"i32","v":5,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":256140722,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":13,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9acaf8","n":"system"},{"t":"i32","v":6,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":256141097,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":14,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9acdd8","n":"system"},{"t":"i32","v":7,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":256141460,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":15,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad0b8","n":"system"},{"t":"i32","v":8,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":256141944,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":16,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad398","n":"system"},{"t":"i32","v":9,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":256142329,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":17,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad678","n":"system"},{"t":"i32","v":10,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":256142792,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":18,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20906c70","n":"system"},{"t":"i32","v":11,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":256143226,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":19,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20906f50","n":"system"},{"t":"i32","v":12,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":256143655,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":20,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907230","n":"system"},{"t":"i32","v":13,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":256144075,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":21,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907510","n":"system"},{"t":"i32","v":14,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":256144652,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":22,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209077f0","n":"system"},{"t":"i32","v":15,"n":"system_index"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":2}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":1},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":1},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":2}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":1},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[{"region":"system","off":216,"len":1},{"region":"system","off":368,"len":1},{"region":"system","off":420,"len":12},{"region":"system","off":568,"len":4}],"n":4}}
|
|
{"ts":256145183,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":23,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907ad0","n":"system"},{"t":"i32","v":16,"n":"system_index"},{"t":"i32","v":7,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":2}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":268435456}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":128}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":128}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":1},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":268435456},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":1},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":268435456},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":2}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":128}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":1},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":268435456},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[{"region":"system","off":420,"len":12}],"n":1}}
|
|
{"ts":256145624,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":24,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909518","n":"system"},{"t":"i32","v":17,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":256146047,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":25,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908978","n":"system"},{"t":"i32","v":18,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":65536}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":256146472,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":26,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909800","n":"system"},{"t":"i32","v":19,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":256146924,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":27,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907dd8","n":"system"},{"t":"i32","v":20,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":256147440,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":28,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209080c0","n":"system"},{"t":"i32","v":21,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":256147890,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":29,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209083a8","n":"system"},{"t":"i32","v":22,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":65536}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":256148310,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":30,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909230","n":"system"},{"t":"i32","v":23,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":256148768,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":31,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908690","n":"system"},{"t":"i32","v":24,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":256149188,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":32,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908c60","n":"system"},{"t":"i32","v":25,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":65536}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":256149622,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":33,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908f48","n":"system"},{"t":"i32","v":26,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":256150039,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":34,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x2090e3b0","n":"system"},{"t":"i32","v":27,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":65536}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335305171,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":35,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x0e945738","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":912,"n":"fleet_id"},{"t":"i32","v":7,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[1].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[2].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[3].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[4].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[5].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[6].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[7].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[8].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[9].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[1].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[2].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[3].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[4].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[5].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[6].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[7].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[8].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[9].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":335305484,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":36,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x0e945860","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1120,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":335305777,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":37,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x209113e8","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1152,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":335305973,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":38,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x209119b0","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1264,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":335306158,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":39,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x20911ad8","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1296,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":335306340,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":40,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x20911510","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1360,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":335306553,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":41,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c7648","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":34,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-10.5634995},"y":{"t":"f32","v":5.97172451},"z":{"t":"f32","v":1.56473362}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-9.19839668},"y":{"t":"f32","v":7.22444439},"z":{"t":"f32","v":0.811615944}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.5634995},"y":{"t":"f32","v":5.97172451},"z":{"t":"f32","v":1.56473362}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":18}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":16}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-9.19839668},"y":{"t":"f32","v":7.22444439},"z":{"t":"f32","v":0.811615944}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.5634995},"y":{"t":"f32","v":5.97172451},"z":{"t":"f32","v":1.56473362}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":16}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":2}}
|
|
{"ts":335306781,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":42,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c62a0","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":50,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.9839945},"y":{"t":"f32","v":3.1515913},"z":{"t":"f32","v":3.12465525}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":20}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":18}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.9839945},"y":{"t":"f32","v":3.15159106},"z":{"t":"f32","v":3.12465525}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":18}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}}},"diverged":true,"diff":[{"path":"side.pos.after.v.y","why":"exact","orig":{"t":"f32","v":3.1515913},"ours":{"t":"f32","v":3.15159106}}],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":160,"len":4},{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":3}}
|
|
{"ts":335307229,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":43,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c0ad8","n":"system"},{"t":"i32","v":0,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335307673,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":44,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c0db8","n":"system"},{"t":"i32","v":1,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335308052,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":45,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c1098","n":"system"},{"t":"i32","v":2,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335308428,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":46,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac258","n":"system"},{"t":"i32","v":3,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335308886,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":47,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac538","n":"system"},{"t":"i32","v":4,"n":"system_index"},{"t":"i32","v":0,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":2}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":3}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":2},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":2},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":3}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":2},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335309334,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":48,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac818","n":"system"},{"t":"i32","v":5,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335309707,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":49,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9acaf8","n":"system"},{"t":"i32","v":6,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335310173,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":50,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9acdd8","n":"system"},{"t":"i32","v":7,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335310562,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":51,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad0b8","n":"system"},{"t":"i32","v":8,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335310959,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":52,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad398","n":"system"},{"t":"i32","v":9,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335311330,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":53,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad678","n":"system"},{"t":"i32","v":10,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335311772,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":54,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20906c70","n":"system"},{"t":"i32","v":11,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335312194,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":55,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20906f50","n":"system"},{"t":"i32","v":12,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335312635,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":56,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907230","n":"system"},{"t":"i32","v":13,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335313058,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":57,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907510","n":"system"},{"t":"i32","v":14,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335313676,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":58,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209077f0","n":"system"},{"t":"i32","v":15,"n":"system_index"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":2}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":3}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":2},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":2},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":3}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":2},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[{"region":"system","off":216,"len":1},{"region":"system","off":368,"len":1},{"region":"system","off":568,"len":4}],"n":3}}
|
|
{"ts":335314160,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":59,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907ad0","n":"system"},{"t":"i32","v":16,"n":"system_index"},{"t":"i32","v":7,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":2}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":3}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":128}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":128}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":2},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":2},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":3}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":128}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":2},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335314602,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":60,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909518","n":"system"},{"t":"i32","v":17,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335315053,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":61,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908978","n":"system"},{"t":"i32","v":18,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335315479,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":62,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909800","n":"system"},{"t":"i32","v":19,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335315915,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":63,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907dd8","n":"system"},{"t":"i32","v":20,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335316334,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":64,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209080c0","n":"system"},{"t":"i32","v":21,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335316772,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":65,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209083a8","n":"system"},{"t":"i32","v":22,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335317256,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":66,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909230","n":"system"},{"t":"i32","v":23,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335317693,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":67,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908690","n":"system"},{"t":"i32","v":24,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335318115,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":68,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908c60","n":"system"},{"t":"i32","v":25,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335318541,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":69,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908f48","n":"system"},{"t":"i32","v":26,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335318958,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":70,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x2090e3b0","n":"system"},{"t":"i32","v":27,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":335320579,"hook":"Game::ServerPlayer::OnTechResearched","mode":"compare","call_id":71,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e955420","n":"player"},{"t":"i32","v":1,"n":"player_index"},{"t":"i32","v":2,"n":"species"},{"t":"ptr","v":"0x04ab12f8","n":"def"},{"t":"i32","v":10001,"n":"tech_id"},{"t":"i32","v":144,"n":"def_node_index"},{"t":"str","v":"IND_Waldo","n":"tech_name"},{"t":"bool","v":false,"n":"silent"},{"t":"bool","v":true,"n":"is_current_target"},{"t":"i32","v":4,"n":"owned_systems_bytes"},{"t":"bool","v":false,"n":"rebel_ai"},{"t":"bool","v":true,"n":"ai_benefit_in"},{"t":"i32","v":3,"n":"gate_traffic_tpgate"},{"t":"i32","v":6,"n":"gate_traffic_gatamp"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"suit":{"before":{"t":"struct","v":{"suit_tol":{"t":"f32","v":6.25},"max_overharvest":{"t":"f32","v":0.0199999996}}},"after":{"t":"struct","v":{"suit_tol":{"t":"f32","v":6.25},"max_overharvest":{"t":"f32","v":0.0199999996}}}},"res_mod":{"before":{"t":"struct","v":{"res_mod":{"t":"f32","v":0.899999976}}},"after":{"t":"struct","v":{"res_mod":{"t":"f32","v":0.899999976}}}},"abilities":{"before":{"t":"struct","v":{"reb_ai":{"t":"bool","v":false},"unk_fd":{"t":"u8","v":1},"ai_benefit":{"t":"bool","v":true},"trade_allowed":{"t":"bool","v":false},"commerce_raiding":{"t":"bool","v":false},"view_intel":{"t":"bool","v":false},"grav_synth":{"t":"bool","v":false},"advanced_sensors":{"t":"bool","v":false},"arcology":{"t":"bool","v":false},"unk_105":{"t":"u8","v":0},"unk_106":{"t":"u8","v":0},"unk_107":{"t":"u8","v":0}}},"after":{"t":"struct","v":{"reb_ai":{"t":"bool","v":false},"unk_fd":{"t":"u8","v":1},"ai_benefit":{"t":"bool","v":true},"trade_allowed":{"t":"bool","v":false},"commerce_raiding":{"t":"bool","v":false},"view_intel":{"t":"bool","v":false},"grav_synth":{"t":"bool","v":false},"advanced_sensors":{"t":"bool","v":false},"arcology":{"t":"bool","v":false},"unk_105":{"t":"u8","v":0},"unk_106":{"t":"u8","v":0},"unk_107":{"t":"u8","v":0}}}},"modifiers":{"before":{"t":"struct","v":{"pddm":{"t":"f32","v":1},"con_mod":{"t":"list","v":[{"t":"f32","v":1},{"t":"f32","v":1},{"t":"f32","v":1}]},"sav_mod":{"t":"list","v":[{"t":"f32","v":1},{"t":"f32","v":1},{"t":"f32","v":1}]},"out_mod":{"t":"f32","v":1.10000002},"unk_128":{"t":"u32","v":1065353216},"unk_12c":{"t":"u32","v":1065353216},"pop_mod":{"t":"f32","v":1.10000002},"terra_mod":{"t":"f32","v":1},"asteroid_mining":{"t":"bool","v":false},"unk_139_13b":{"t":"u32","v":0},"unk_13c":{"t":"u32","v":1045220557},"min_rate":{"t":"f32","v":1},"unk_144":{"t":"u32","v":0},"per_gate_traffic":{"t":"i32","v":0},"unk_14c":{"t":"u32","v":0},"cast_range":{"t":"f32","v":0},"cast_efficiency":{"t":"f32","v":0},"cast_threshold":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"pddm":{"t":"f32","v":1},"con_mod":{"t":"list","v":[{"t":"f32","v":0.899999976},{"t":"f32","v":0.899999976},{"t":"f32","v":0.899999976}]},"sav_mod":{"t":"list","v":[{"t":"f32","v":1},{"t":"f32","v":1},{"t":"f32","v":1}]},"out_mod":{"t":"f32","v":1.25},"unk_128":{"t":"u32","v":1065353216},"unk_12c":{"t":"u32","v":1065353216},"pop_mod":{"t":"f32","v":1.10000002},"terra_mod":{"t":"f32","v":1},"asteroid_mining":{"t":"bool","v":false},"unk_139_13b":{"t":"u32","v":0},"unk_13c":{"t":"u32","v":1045220557},"min_rate":{"t":"f32","v":1},"unk_144":{"t":"u32","v":0},"per_gate_traffic":{"t":"i32","v":0},"unk_14c":{"t":"u32","v":0},"cast_range":{"t":"f32","v":0},"cast_efficiency":{"t":"f32","v":0},"cast_threshold":{"t":"f32","v":0}}}},"design_masks":{"before":{"t":"struct","v":{"design_options_a":{"t":"u32","v":0},"design_options_b":{"t":"u32","v":64}}},"after":{"t":"struct","v":{"design_options_a":{"t":"u32","v":0},"design_options_b":{"t":"u32","v":64}}}},"translation":{"before":{"t":"struct","v":{"translation_known":{"t":"u32","v":4}}},"after":{"t":"struct","v":{"translation_known":{"t":"u32","v":4}}}},"vaccines":{"before":{"t":"struct","v":{"has_vaccine":{"t":"u32","v":0},"has_immunity":{"t":"u32","v":0},"node_track_mask":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"has_vaccine":{"t":"u32","v":0},"has_immunity":{"t":"u32","v":0},"node_track_mask":{"t":"u32","v":0}}}},"research_target":{"before":{"t":"struct","v":{"research_target":{"t":"ptr","v":"0x04ab12f8"},"research_target_set":{"t":"bool","v":true}}},"after":{"t":"struct","v":{"research_target":{"t":"ptr","v":"0x00000000"},"research_target_set":{"t":"bool","v":false}}}},"node_bore_ptr":{"before":{"t":"struct","v":{"node_bore_block":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"node_bore_block":{"t":"ptr","v":"0x00000000"}}}},"inc_mod":{"before":{"t":"struct","v":{"inc_mod":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"inc_mod":{"t":"f32","v":1}}}},"capture_designs":{"before":{"t":"struct","v":{"capture_designs":{"t":"bool","v":false},"unk_331_333":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"capture_designs":{"t":"bool","v":false},"unk_331_333":{"t":"u32","v":0}}}},"species_flags":{"before":{"t":"struct","v":{"species_flags":{"t":"list","v":[{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":15},{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":0}]},"count":{"t":"u32","v":7}}},"after":{"t":"struct","v":{"species_flags":{"t":"list","v":[{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":15},{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":0}]},"count":{"t":"u32","v":7}}}},"roll":{"before":{"t":"struct","v":{"research_roll_pending":{"t":"bool","v":false},"unk_3b5_3b7":{"t":"u32","v":1},"ai_rebellion":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"research_roll_pending":{"t":"bool","v":false},"unk_3b5_3b7":{"t":"u32","v":1},"ai_rebellion":{"t":"ptr","v":"0x00000000"}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}}},"ours":{"ret":null,"side":{"suit":{"after":{"t":"struct","v":{"suit_tol":{"t":"f32","v":6.25},"max_overharvest":{"t":"f32","v":0.0199999996}}}},"res_mod":{"after":{"t":"struct","v":{"res_mod":{"t":"f32","v":0.899999976}}}},"abilities":{"after":{"t":"struct","v":{"reb_ai":{"t":"bool","v":false},"unk_fd":{"t":"u8","v":1},"ai_benefit":{"t":"bool","v":true},"trade_allowed":{"t":"bool","v":false},"commerce_raiding":{"t":"bool","v":false},"view_intel":{"t":"bool","v":false},"grav_synth":{"t":"bool","v":false},"advanced_sensors":{"t":"bool","v":false},"arcology":{"t":"bool","v":false},"unk_105":{"t":"u8","v":0},"unk_106":{"t":"u8","v":0},"unk_107":{"t":"u8","v":0}}}},"modifiers":{"after":{"t":"struct","v":{"pddm":{"t":"f32","v":1},"con_mod":{"t":"list","v":[{"t":"f32","v":0.899999976},{"t":"f32","v":0.899999976},{"t":"f32","v":0.899999976}]},"sav_mod":{"t":"list","v":[{"t":"f32","v":1},{"t":"f32","v":1},{"t":"f32","v":1}]},"out_mod":{"t":"f32","v":1.25},"unk_128":{"t":"u32","v":1065353216},"unk_12c":{"t":"u32","v":1065353216},"pop_mod":{"t":"f32","v":1.10000002},"terra_mod":{"t":"f32","v":1},"asteroid_mining":{"t":"bool","v":false},"unk_139_13b":{"t":"u32","v":0},"unk_13c":{"t":"u32","v":1045220557},"min_rate":{"t":"f32","v":1},"unk_144":{"t":"u32","v":0},"per_gate_traffic":{"t":"i32","v":0},"unk_14c":{"t":"u32","v":0},"cast_range":{"t":"f32","v":0},"cast_efficiency":{"t":"f32","v":0},"cast_threshold":{"t":"f32","v":0}}}},"design_masks":{"after":{"t":"struct","v":{"design_options_a":{"t":"u32","v":0},"design_options_b":{"t":"u32","v":64}}}},"translation":{"after":{"t":"struct","v":{"translation_known":{"t":"u32","v":4}}}},"vaccines":{"after":{"t":"struct","v":{"has_vaccine":{"t":"u32","v":0},"has_immunity":{"t":"u32","v":0},"node_track_mask":{"t":"u32","v":0}}}},"research_target":{"after":{"t":"struct","v":{"research_target":{"t":"ptr","v":"0x00000000"},"research_target_set":{"t":"bool","v":false}}}},"node_bore_ptr":{"after":{"t":"struct","v":{"node_bore_block":{"t":"ptr","v":"0x00000000"}}}},"inc_mod":{"after":{"t":"struct","v":{"inc_mod":{"t":"f32","v":1}}}},"capture_designs":{"after":{"t":"struct","v":{"capture_designs":{"t":"bool","v":false},"unk_331_333":{"t":"u32","v":0}}}},"species_flags":{"after":{"t":"struct","v":{"species_flags":{"t":"list","v":[{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":15},{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":0}]},"count":{"t":"u32","v":7}}}},"roll":{"after":{"t":"struct","v":{"research_roll_pending":{"t":"bool","v":false},"unk_3b5_3b7":{"t":"u32","v":1},"ai_rebellion":{"t":"ptr","v":"0x00000000"}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player"],"undeclared":[{"region":"player","off":628,"len":3},{"region":"player","off":632,"len":3},{"region":"player","off":636,"len":3},{"region":"player","off":688,"len":1}],"n":4}}
|
|
{"ts":366919035,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":72,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x0e945738","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":912,"n":"fleet_id"},{"t":"i32","v":7,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[1].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[2].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[3].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[4].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[5].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[6].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[7].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[8].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[9].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[1].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[2].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[3].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[4].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[5].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[6].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[7].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[8].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[9].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":366919365,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":73,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x0e945860","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1120,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":366919584,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":74,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x209113e8","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1152,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":366919790,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":75,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x209119b0","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1264,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":366919973,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":76,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x20911ad8","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1296,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":366920338,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":77,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x20911510","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1360,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":366920580,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":78,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c7648","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":34,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-9.19839668},"y":{"t":"f32","v":7.22444439},"z":{"t":"f32","v":0.811615944}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-7.83329344},"y":{"t":"f32","v":8.47716427},"z":{"t":"f32","v":0.058498323}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-10.5634995},"y":{"t":"f32","v":5.97172451},"z":{"t":"f32","v":1.56473362}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-9.19839668},"y":{"t":"f32","v":7.22444439},"z":{"t":"f32","v":0.811615944}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":14}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-7.83329344},"y":{"t":"f32","v":8.47716427},"z":{"t":"f32","v":0.058498323}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-9.19839668},"y":{"t":"f32","v":7.22444439},"z":{"t":"f32","v":0.811615944}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":14}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":2}}
|
|
{"ts":366920772,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":79,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c62a0","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":50,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-10.9839945},"y":{"t":"f32","v":3.1515913},"z":{"t":"f32","v":3.12465525}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.0393867},"y":{"t":"f32","v":1.58417809},"z":{"t":"f32","v":3.93145895}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.9839945},"y":{"t":"f32","v":3.1515913},"z":{"t":"f32","v":3.12465525}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":18}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":16}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.0393867},"y":{"t":"f32","v":1.58417821},"z":{"t":"f32","v":3.93145895}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.9839945},"y":{"t":"f32","v":3.1515913},"z":{"t":"f32","v":3.12465525}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":16}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}}},"diverged":true,"diff":[{"path":"side.pos.after.v.y","why":"exact","orig":{"t":"f32","v":1.58417809},"ours":{"t":"f32","v":1.58417821}}],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":2}}
|
|
{"ts":366920957,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":80,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c6f58","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":66,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-9.99755001},"y":{"t":"f32","v":4.21149492},"z":{"t":"f32","v":2.20177913}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":20}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":18}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-9.99755001},"y":{"t":"f32","v":4.21149445},"z":{"t":"f32","v":2.20177913}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":18}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}}},"diverged":true,"diff":[{"path":"side.pos.after.v.y","why":"exact","orig":{"t":"f32","v":4.21149492},"ours":{"t":"f32","v":4.21149445}}],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":160,"len":4},{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":3}}
|
|
{"ts":366921388,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":81,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c0ad8","n":"system"},{"t":"i32","v":0,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":366921775,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":82,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c0db8","n":"system"},{"t":"i32","v":1,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":366922131,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":83,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c1098","n":"system"},{"t":"i32","v":2,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":366922498,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":84,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac258","n":"system"},{"t":"i32","v":3,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":366923003,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":85,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac538","n":"system"},{"t":"i32","v":4,"n":"system_index"},{"t":"i32","v":0,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":3}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":4}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":3},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":3},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":4}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":3},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":366923393,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":86,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac818","n":"system"},{"t":"i32","v":5,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":366923842,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":87,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9acaf8","n":"system"},{"t":"i32","v":6,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":366924272,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":88,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9acdd8","n":"system"},{"t":"i32","v":7,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":366924731,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":89,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad0b8","n":"system"},{"t":"i32","v":8,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":366925099,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":90,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad398","n":"system"},{"t":"i32","v":9,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":366925457,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":91,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad678","n":"system"},{"t":"i32","v":10,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":366925905,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":92,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20906c70","n":"system"},{"t":"i32","v":11,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":366926331,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":93,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20906f50","n":"system"},{"t":"i32","v":12,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":366926755,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":94,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907230","n":"system"},{"t":"i32","v":13,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":366927217,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":95,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907510","n":"system"},{"t":"i32","v":14,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":366928281,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":96,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209077f0","n":"system"},{"t":"i32","v":15,"n":"system_index"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":3}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":4}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":3},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":3},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":4}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":3},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[{"region":"system","off":216,"len":1},{"region":"system","off":368,"len":1},{"region":"system","off":568,"len":4}],"n":3}}
|
|
{"ts":366929141,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":97,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907ad0","n":"system"},{"t":"i32","v":16,"n":"system_index"},{"t":"i32","v":7,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":3}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":4}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":128}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":128}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":3},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":3},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":4}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":128}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":3},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":366929793,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":98,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909518","n":"system"},{"t":"i32","v":17,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":366930254,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":99,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908978","n":"system"},{"t":"i32","v":18,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":366930708,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":100,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909800","n":"system"},{"t":"i32","v":19,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":366931134,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":101,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907dd8","n":"system"},{"t":"i32","v":20,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":366931572,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":102,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209080c0","n":"system"},{"t":"i32","v":21,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":366931995,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":103,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209083a8","n":"system"},{"t":"i32","v":22,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":366932456,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":104,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909230","n":"system"},{"t":"i32","v":23,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":366932990,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":105,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908690","n":"system"},{"t":"i32","v":24,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":366933416,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":106,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908c60","n":"system"},{"t":"i32","v":25,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":366933860,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":107,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908f48","n":"system"},{"t":"i32","v":26,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":366934278,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":108,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x2090e3b0","n":"system"},{"t":"i32","v":27,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398490533,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":109,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x0e945738","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":912,"n":"fleet_id"},{"t":"i32","v":7,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[1].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[2].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[3].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[4].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[5].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[6].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[7].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[8].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[9].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[1].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[2].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[3].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[4].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[5].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[6].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[7].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[8].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[9].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":398490797,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":110,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x0e945860","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1120,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":398490995,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":111,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x209113e8","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1152,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":398491184,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":112,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x209119b0","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1264,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":398491365,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":113,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x20911ad8","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1296,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":398491560,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":114,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x20911510","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1360,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":398491777,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":115,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c7648","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":34,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":true},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-7.83329344},"y":{"t":"f32","v":8.47716427},"z":{"t":"f32","v":0.058498323}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.95160389},"y":{"t":"f32","v":9.28626823},"z":{"t":"f32","v":-0.42792356}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-9.19839668},"y":{"t":"f32","v":7.22444439},"z":{"t":"f32","v":0.811615944}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-7.83329344},"y":{"t":"f32","v":8.47716427},"z":{"t":"f32","v":0.058498323}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":14}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":12.7082443}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}},"ours":{"ret":{"t":"bool","v":true},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.95160389},"y":{"t":"f32","v":9.28626823},"z":{"t":"f32","v":-0.42792356}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-7.83329344},"y":{"t":"f32","v":8.47716427},"z":{"t":"f32","v":0.058498323}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":12.7082443}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":160,"len":4},{"region":"fleet","off":204,"len":1},{"region":"fleet","off":219,"len":2},{"region":"fleet","off":224,"len":26},{"region":"fleet","off":268,"len":1}],"n":5}}
|
|
{"ts":398491972,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":116,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c62a0","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":50,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-10.0393867},"y":{"t":"f32","v":1.58417809},"z":{"t":"f32","v":3.93145895}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-9.09477901},"y":{"t":"f32","v":0.0167649984},"z":{"t":"f32","v":4.73826265}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-10.9839945},"y":{"t":"f32","v":3.1515913},"z":{"t":"f32","v":3.12465525}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.0393867},"y":{"t":"f32","v":1.58417809},"z":{"t":"f32","v":3.93145895}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":14}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-9.09477901},"y":{"t":"f32","v":0.0167651176},"z":{"t":"f32","v":4.73826265}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.0393867},"y":{"t":"f32","v":1.58417809},"z":{"t":"f32","v":3.93145895}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":14}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}}},"diverged":true,"diff":[{"path":"side.pos.after.v.y","why":"exact","orig":{"t":"f32","v":0.0167649984},"ours":{"t":"f32","v":0.0167651176}}],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":2}}
|
|
{"ts":398492154,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":117,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c6f58","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":66,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-9.99755001},"y":{"t":"f32","v":4.21149492},"z":{"t":"f32","v":2.20177913}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-8.0664978},"y":{"t":"f32","v":3.70398545},"z":{"t":"f32","v":2.08570695}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-9.99755001},"y":{"t":"f32","v":4.21149492},"z":{"t":"f32","v":2.20177913}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":18}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":16}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-8.0664978},"y":{"t":"f32","v":3.70398545},"z":{"t":"f32","v":2.08570695}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-9.99755001},"y":{"t":"f32","v":4.21149492},"z":{"t":"f32","v":2.20177913}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":16}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":2}}
|
|
{"ts":398492332,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":118,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c7ae8","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":98,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.9996872},"y":{"t":"f32","v":3.14307928},"z":{"t":"f32","v":1.50941014}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":20}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":18}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.9996872},"y":{"t":"f32","v":3.14307904},"z":{"t":"f32","v":1.50941014}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":18}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}}},"diverged":true,"diff":[{"path":"side.pos.after.v.y","why":"exact","orig":{"t":"f32","v":3.14307928},"ours":{"t":"f32","v":3.14307904}}],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":160,"len":4},{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":3}}
|
|
{"ts":398492793,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":119,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c0ad8","n":"system"},{"t":"i32","v":0,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398493321,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":120,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c0db8","n":"system"},{"t":"i32","v":1,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398493811,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":121,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c1098","n":"system"},{"t":"i32","v":2,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398494213,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":122,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac258","n":"system"},{"t":"i32","v":3,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398494671,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":123,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac538","n":"system"},{"t":"i32","v":4,"n":"system_index"},{"t":"i32","v":0,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":4}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":5}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":4},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":4},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":5}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":4},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398495095,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":124,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac818","n":"system"},{"t":"i32","v":5,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398495500,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":125,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9acaf8","n":"system"},{"t":"i32","v":6,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398495897,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":126,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9acdd8","n":"system"},{"t":"i32","v":7,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398496275,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":127,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad0b8","n":"system"},{"t":"i32","v":8,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398496661,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":128,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad398","n":"system"},{"t":"i32","v":9,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398497042,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":129,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad678","n":"system"},{"t":"i32","v":10,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398497476,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":130,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20906c70","n":"system"},{"t":"i32","v":11,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398497914,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":131,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20906f50","n":"system"},{"t":"i32","v":12,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398498338,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":132,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907230","n":"system"},{"t":"i32","v":13,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398498772,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":133,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907510","n":"system"},{"t":"i32","v":14,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398499320,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":134,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209077f0","n":"system"},{"t":"i32","v":15,"n":"system_index"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":4}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":5}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":4},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":4},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":5}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":4},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[{"region":"system","off":216,"len":1},{"region":"system","off":368,"len":1},{"region":"system","off":568,"len":4}],"n":3}}
|
|
{"ts":398499840,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":135,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907ad0","n":"system"},{"t":"i32","v":16,"n":"system_index"},{"t":"i32","v":7,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":4}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":5}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":128}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":128}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":4},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":4},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":5}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":128}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":4},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398500349,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":136,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909518","n":"system"},{"t":"i32","v":17,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398500850,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":137,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908978","n":"system"},{"t":"i32","v":18,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398501276,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":138,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909800","n":"system"},{"t":"i32","v":19,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398501723,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":139,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907dd8","n":"system"},{"t":"i32","v":20,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398502147,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":140,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209080c0","n":"system"},{"t":"i32","v":21,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398502581,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":141,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209083a8","n":"system"},{"t":"i32","v":22,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398503007,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":142,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909230","n":"system"},{"t":"i32","v":23,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398503427,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":143,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908690","n":"system"},{"t":"i32","v":24,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398503860,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":144,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908c60","n":"system"},{"t":"i32","v":25,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398504276,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":145,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908f48","n":"system"},{"t":"i32","v":26,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398504700,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":146,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x2090e3b0","n":"system"},{"t":"i32","v":27,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":398505487,"hook":"Game::ServerPlayer::OnTechResearched","mode":"compare","call_id":147,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e955420","n":"player"},{"t":"i32","v":1,"n":"player_index"},{"t":"i32","v":2,"n":"species"},{"t":"ptr","v":"0x04ab1428","n":"def"},{"t":"i32","v":10094,"n":"tech_id"},{"t":"i32","v":142,"n":"def_node_index"},{"t":"str","v":"IND_TRKSTL","n":"tech_name"},{"t":"bool","v":false,"n":"silent"},{"t":"bool","v":true,"n":"is_current_target"},{"t":"i32","v":4,"n":"owned_systems_bytes"},{"t":"bool","v":false,"n":"rebel_ai"},{"t":"bool","v":true,"n":"ai_benefit_in"},{"t":"i32","v":3,"n":"gate_traffic_tpgate"},{"t":"i32","v":6,"n":"gate_traffic_gatamp"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"suit":{"before":{"t":"struct","v":{"suit_tol":{"t":"f32","v":6.25},"max_overharvest":{"t":"f32","v":0.0199999996}}},"after":{"t":"struct","v":{"suit_tol":{"t":"f32","v":6.25},"max_overharvest":{"t":"f32","v":0.0199999996}}}},"res_mod":{"before":{"t":"struct","v":{"res_mod":{"t":"f32","v":0.899999976}}},"after":{"t":"struct","v":{"res_mod":{"t":"f32","v":0.899999976}}}},"abilities":{"before":{"t":"struct","v":{"reb_ai":{"t":"bool","v":false},"unk_fd":{"t":"u8","v":1},"ai_benefit":{"t":"bool","v":true},"trade_allowed":{"t":"bool","v":false},"commerce_raiding":{"t":"bool","v":false},"view_intel":{"t":"bool","v":false},"grav_synth":{"t":"bool","v":false},"advanced_sensors":{"t":"bool","v":false},"arcology":{"t":"bool","v":false},"unk_105":{"t":"u8","v":0},"unk_106":{"t":"u8","v":0},"unk_107":{"t":"u8","v":0}}},"after":{"t":"struct","v":{"reb_ai":{"t":"bool","v":false},"unk_fd":{"t":"u8","v":1},"ai_benefit":{"t":"bool","v":true},"trade_allowed":{"t":"bool","v":false},"commerce_raiding":{"t":"bool","v":false},"view_intel":{"t":"bool","v":false},"grav_synth":{"t":"bool","v":false},"advanced_sensors":{"t":"bool","v":false},"arcology":{"t":"bool","v":false},"unk_105":{"t":"u8","v":0},"unk_106":{"t":"u8","v":0},"unk_107":{"t":"u8","v":0}}}},"modifiers":{"before":{"t":"struct","v":{"pddm":{"t":"f32","v":1},"con_mod":{"t":"list","v":[{"t":"f32","v":0.899999976},{"t":"f32","v":0.899999976},{"t":"f32","v":0.899999976}]},"sav_mod":{"t":"list","v":[{"t":"f32","v":1},{"t":"f32","v":1},{"t":"f32","v":1}]},"out_mod":{"t":"f32","v":1.25},"unk_128":{"t":"u32","v":1065353216},"unk_12c":{"t":"u32","v":1065353216},"pop_mod":{"t":"f32","v":1.10000002},"terra_mod":{"t":"f32","v":1},"asteroid_mining":{"t":"bool","v":false},"unk_139_13b":{"t":"u32","v":0},"unk_13c":{"t":"u32","v":1045220557},"min_rate":{"t":"f32","v":1},"unk_144":{"t":"u32","v":0},"per_gate_traffic":{"t":"i32","v":0},"unk_14c":{"t":"u32","v":0},"cast_range":{"t":"f32","v":0},"cast_efficiency":{"t":"f32","v":0},"cast_threshold":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"pddm":{"t":"f32","v":1},"con_mod":{"t":"list","v":[{"t":"f32","v":0.899999976},{"t":"f32","v":0.899999976},{"t":"f32","v":0.899999976}]},"sav_mod":{"t":"list","v":[{"t":"f32","v":1},{"t":"f32","v":1},{"t":"f32","v":1}]},"out_mod":{"t":"f32","v":1.25},"unk_128":{"t":"u32","v":1065353216},"unk_12c":{"t":"u32","v":1065353216},"pop_mod":{"t":"f32","v":1.10000002},"terra_mod":{"t":"f32","v":1},"asteroid_mining":{"t":"bool","v":false},"unk_139_13b":{"t":"u32","v":0},"unk_13c":{"t":"u32","v":1045220557},"min_rate":{"t":"f32","v":1},"unk_144":{"t":"u32","v":0},"per_gate_traffic":{"t":"i32","v":0},"unk_14c":{"t":"u32","v":0},"cast_range":{"t":"f32","v":0},"cast_efficiency":{"t":"f32","v":0},"cast_threshold":{"t":"f32","v":0}}}},"design_masks":{"before":{"t":"struct","v":{"design_options_a":{"t":"u32","v":0},"design_options_b":{"t":"u32","v":64}}},"after":{"t":"struct","v":{"design_options_a":{"t":"u32","v":0},"design_options_b":{"t":"u32","v":2097216}}}},"translation":{"before":{"t":"struct","v":{"translation_known":{"t":"u32","v":4}}},"after":{"t":"struct","v":{"translation_known":{"t":"u32","v":4}}}},"vaccines":{"before":{"t":"struct","v":{"has_vaccine":{"t":"u32","v":0},"has_immunity":{"t":"u32","v":0},"node_track_mask":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"has_vaccine":{"t":"u32","v":0},"has_immunity":{"t":"u32","v":0},"node_track_mask":{"t":"u32","v":0}}}},"research_target":{"before":{"t":"struct","v":{"research_target":{"t":"ptr","v":"0x04ab1428"},"research_target_set":{"t":"bool","v":true}}},"after":{"t":"struct","v":{"research_target":{"t":"ptr","v":"0x00000000"},"research_target_set":{"t":"bool","v":false}}}},"node_bore_ptr":{"before":{"t":"struct","v":{"node_bore_block":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"node_bore_block":{"t":"ptr","v":"0x00000000"}}}},"inc_mod":{"before":{"t":"struct","v":{"inc_mod":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"inc_mod":{"t":"f32","v":1}}}},"capture_designs":{"before":{"t":"struct","v":{"capture_designs":{"t":"bool","v":false},"unk_331_333":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"capture_designs":{"t":"bool","v":false},"unk_331_333":{"t":"u32","v":0}}}},"species_flags":{"before":{"t":"struct","v":{"species_flags":{"t":"list","v":[{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":15},{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":0}]},"count":{"t":"u32","v":7}}},"after":{"t":"struct","v":{"species_flags":{"t":"list","v":[{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":15},{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":0}]},"count":{"t":"u32","v":7}}}},"roll":{"before":{"t":"struct","v":{"research_roll_pending":{"t":"bool","v":true},"unk_3b5_3b7":{"t":"u32","v":1},"ai_rebellion":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"research_roll_pending":{"t":"bool","v":false},"unk_3b5_3b7":{"t":"u32","v":1},"ai_rebellion":{"t":"ptr","v":"0x00000000"}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":375},"next_index":{"t":"i64","v":249}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":374},"next_index":{"t":"i64","v":250}}}}},"ours":{"ret":null,"side":{"suit":{"after":{"t":"struct","v":{"suit_tol":{"t":"f32","v":6.25},"max_overharvest":{"t":"f32","v":0.0199999996}}}},"res_mod":{"after":{"t":"struct","v":{"res_mod":{"t":"f32","v":0.899999976}}}},"abilities":{"after":{"t":"struct","v":{"reb_ai":{"t":"bool","v":false},"unk_fd":{"t":"u8","v":1},"ai_benefit":{"t":"bool","v":true},"trade_allowed":{"t":"bool","v":false},"commerce_raiding":{"t":"bool","v":false},"view_intel":{"t":"bool","v":false},"grav_synth":{"t":"bool","v":false},"advanced_sensors":{"t":"bool","v":false},"arcology":{"t":"bool","v":false},"unk_105":{"t":"u8","v":0},"unk_106":{"t":"u8","v":0},"unk_107":{"t":"u8","v":0}}}},"modifiers":{"after":{"t":"struct","v":{"pddm":{"t":"f32","v":1},"con_mod":{"t":"list","v":[{"t":"f32","v":0.899999976},{"t":"f32","v":0.899999976},{"t":"f32","v":0.899999976}]},"sav_mod":{"t":"list","v":[{"t":"f32","v":1},{"t":"f32","v":1},{"t":"f32","v":1}]},"out_mod":{"t":"f32","v":1.25},"unk_128":{"t":"u32","v":1065353216},"unk_12c":{"t":"u32","v":1065353216},"pop_mod":{"t":"f32","v":1.10000002},"terra_mod":{"t":"f32","v":1},"asteroid_mining":{"t":"bool","v":false},"unk_139_13b":{"t":"u32","v":0},"unk_13c":{"t":"u32","v":1045220557},"min_rate":{"t":"f32","v":1},"unk_144":{"t":"u32","v":0},"per_gate_traffic":{"t":"i32","v":0},"unk_14c":{"t":"u32","v":0},"cast_range":{"t":"f32","v":0},"cast_efficiency":{"t":"f32","v":0},"cast_threshold":{"t":"f32","v":0}}}},"design_masks":{"after":{"t":"struct","v":{"design_options_a":{"t":"u32","v":0},"design_options_b":{"t":"u32","v":2097216}}}},"translation":{"after":{"t":"struct","v":{"translation_known":{"t":"u32","v":4}}}},"vaccines":{"after":{"t":"struct","v":{"has_vaccine":{"t":"u32","v":0},"has_immunity":{"t":"u32","v":0},"node_track_mask":{"t":"u32","v":0}}}},"research_target":{"after":{"t":"struct","v":{"research_target":{"t":"ptr","v":"0x00000000"},"research_target_set":{"t":"bool","v":false}}}},"node_bore_ptr":{"after":{"t":"struct","v":{"node_bore_block":{"t":"ptr","v":"0x00000000"}}}},"inc_mod":{"after":{"t":"struct","v":{"inc_mod":{"t":"f32","v":1}}}},"capture_designs":{"after":{"t":"struct","v":{"capture_designs":{"t":"bool","v":false},"unk_331_333":{"t":"u32","v":0}}}},"species_flags":{"after":{"t":"struct","v":{"species_flags":{"t":"list","v":[{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":15},{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":0}]},"count":{"t":"u32","v":7}}}},"roll":{"after":{"t":"struct","v":{"research_roll_pending":{"t":"bool","v":false},"unk_3b5_3b7":{"t":"u32","v":1},"ai_rebellion":{"t":"ptr","v":"0x00000000"}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":374},"next_index":{"t":"i64","v":250}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player"],"undeclared":[{"region":"player","off":632,"len":1},{"region":"player","off":688,"len":1}],"n":2}}
|
|
{"ts":430067004,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":148,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x0e945738","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":912,"n":"fleet_id"},{"t":"i32","v":7,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[1].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[2].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[3].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[4].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[5].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[6].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[7].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[8].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[9].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[1].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[2].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[3].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[4].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[5].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[6].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[7].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[8].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[9].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":430067293,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":149,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x0e945860","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1120,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":430067512,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":150,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x209113e8","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1152,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":430067703,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":151,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x209119b0","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1264,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":430067886,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":152,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x20911ad8","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1296,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":430068056,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":153,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x20911510","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1360,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}}
|
|
{"ts":430068255,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":154,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c7648","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":34,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.95160389},"y":{"t":"f32","v":9.28626823},"z":{"t":"f32","v":-0.42792356}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.06618261},"y":{"t":"f32","v":9.36798859},"z":{"t":"f32","v":0.234276652}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-7.83329344},"y":{"t":"f32","v":8.47716427},"z":{"t":"f32","v":0.058498323}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.95160389},"y":{"t":"f32","v":9.28626823},"z":{"t":"f32","v":-0.42792356}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":12.7082443}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":10.7082443}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.06618261},"y":{"t":"f32","v":9.36798859},"z":{"t":"f32","v":0.234276593}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.95160389},"y":{"t":"f32","v":9.28626823},"z":{"t":"f32","v":-0.42792356}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":10.7082443}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}}},"diverged":true,"diff":[{"path":"side.pos.after.v.z","why":"exact","orig":{"t":"f32","v":0.234276652},"ours":{"t":"f32","v":0.234276593}}],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":160,"len":4},{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":3}}
|
|
{"ts":430068465,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":155,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c62a0","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":50,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":true},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-9.09477901},"y":{"t":"f32","v":0.0167649984},"z":{"t":"f32","v":4.73826265}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-8.34966946},"y":{"t":"f32","v":-1.21961474},"z":{"t":"f32","v":5.37467194}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-10.0393867},"y":{"t":"f32","v":1.58417809},"z":{"t":"f32","v":3.93145895}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-9.09477901},"y":{"t":"f32","v":0.0167649984},"z":{"t":"f32","v":4.73826265}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":14}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":12.4223938}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}},"ours":{"ret":{"t":"bool","v":true},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-8.34966946},"y":{"t":"f32","v":-1.21961474},"z":{"t":"f32","v":5.37467194}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-9.09477901},"y":{"t":"f32","v":0.0167649984},"z":{"t":"f32","v":4.73826265}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":12.4223938}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":160,"len":4},{"region":"fleet","off":204,"len":1},{"region":"fleet","off":219,"len":2},{"region":"fleet","off":224,"len":26},{"region":"fleet","off":268,"len":1}],"n":5}}
|
|
{"ts":430068666,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":156,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c6f58","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":66,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-8.0664978},"y":{"t":"f32","v":3.70398545},"z":{"t":"f32","v":2.08570695}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.13544559},"y":{"t":"f32","v":3.19647574},"z":{"t":"f32","v":1.96963489}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-9.99755001},"y":{"t":"f32","v":4.21149492},"z":{"t":"f32","v":2.20177913}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-8.0664978},"y":{"t":"f32","v":3.70398545},"z":{"t":"f32","v":2.08570695}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":14}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.13544607},"y":{"t":"f32","v":3.19647598},"z":{"t":"f32","v":1.96963489}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-8.0664978},"y":{"t":"f32","v":3.70398545},"z":{"t":"f32","v":2.08570695}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":14}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}}},"diverged":true,"diff":[{"path":"side.pos.after.v.x","why":"exact","orig":{"t":"f32","v":-6.13544559},"ours":{"t":"f32","v":-6.13544607}},{"path":"side.pos.after.v.y","why":"exact","orig":{"t":"f32","v":3.19647574},"ours":{"t":"f32","v":3.19647598}}],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":2}}
|
|
{"ts":430068870,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":157,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c7ae8","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":98,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-10.9996872},"y":{"t":"f32","v":3.14307928},"z":{"t":"f32","v":1.50941014}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.0707722},"y":{"t":"f32","v":1.56715405},"z":{"t":"f32","v":0.700968981}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.9996872},"y":{"t":"f32","v":3.14307928},"z":{"t":"f32","v":1.50941014}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":18}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":16}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.0707722},"y":{"t":"f32","v":1.56715417},"z":{"t":"f32","v":0.700968921}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.9996872},"y":{"t":"f32","v":3.14307928},"z":{"t":"f32","v":1.50941014}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":16}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}}},"diverged":true,"diff":[{"path":"side.pos.after.v.y","why":"exact","orig":{"t":"f32","v":1.56715405},"ours":{"t":"f32","v":1.56715417}},{"path":"side.pos.after.v.z","why":"exact","orig":{"t":"f32","v":0.700968981},"ours":{"t":"f32","v":0.700968921}}],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":2}}
|
|
{"ts":430069045,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":158,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c7080","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":114,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.9544621},"y":{"t":"f32","v":5.13790941},"z":{"t":"f32","v":0.62210083}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":20}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":18}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.9544621},"y":{"t":"f32","v":5.13790941},"z":{"t":"f32","v":0.62210083}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":18}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":160,"len":4},{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":3}}
|
|
{"ts":430069492,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":159,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c0ad8","n":"system"},{"t":"i32","v":0,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":430070119,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":160,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c0db8","n":"system"},{"t":"i32","v":1,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":430070471,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":161,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c1098","n":"system"},{"t":"i32","v":2,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":430070828,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":162,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac258","n":"system"},{"t":"i32","v":3,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":430071246,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":163,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac538","n":"system"},{"t":"i32","v":4,"n":"system_index"},{"t":"i32","v":0,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":5}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":6}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":5},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":5},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":6}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":5},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":430071670,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":164,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac818","n":"system"},{"t":"i32","v":5,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":430072047,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":165,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9acaf8","n":"system"},{"t":"i32","v":6,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":430072397,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":166,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9acdd8","n":"system"},{"t":"i32","v":7,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":430072790,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":167,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad0b8","n":"system"},{"t":"i32","v":8,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":430073261,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":168,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad398","n":"system"},{"t":"i32","v":9,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":430073762,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":169,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad678","n":"system"},{"t":"i32","v":10,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":430074217,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":170,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20906c70","n":"system"},{"t":"i32","v":11,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":430074651,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":171,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20906f50","n":"system"},{"t":"i32","v":12,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":430075089,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":172,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907230","n":"system"},{"t":"i32","v":13,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":430075523,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":173,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907510","n":"system"},{"t":"i32","v":14,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":2}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":2}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":16},"rcex_mask":{"t":"u32","v":2},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":16},"rcex_mask":{"t":"u32","v":2},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":2}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":16},"rcex_mask":{"t":"u32","v":2},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":430076022,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":174,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209077f0","n":"system"},{"t":"i32","v":15,"n":"system_index"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":5}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":6}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":5},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":5},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":6}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":5},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":430076531,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":175,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907ad0","n":"system"},{"t":"i32","v":16,"n":"system_index"},{"t":"i32","v":7,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":5}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":6}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":128}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":128}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":5},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":5},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":6}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":128}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":5},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":430076960,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":176,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909518","n":"system"},{"t":"i32","v":17,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":430077379,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":177,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908978","n":"system"},{"t":"i32","v":18,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":430077811,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":178,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909800","n":"system"},{"t":"i32","v":19,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":430078228,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":179,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907dd8","n":"system"},{"t":"i32","v":20,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":430078656,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":180,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209080c0","n":"system"},{"t":"i32","v":21,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":430079072,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":181,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209083a8","n":"system"},{"t":"i32","v":22,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":430079497,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":182,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909230","n":"system"},{"t":"i32","v":23,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":430079920,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":183,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908690","n":"system"},{"t":"i32","v":24,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":430080361,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":184,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908c60","n":"system"},{"t":"i32","v":25,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":430080896,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":185,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908f48","n":"system"},{"t":"i32","v":26,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|
|
{"ts":430081299,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":186,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x2090e3b0","n":"system"},{"t":"i32","v":27,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}
|