188 lines
1.2 MiB
188 lines
1.2 MiB
{"meta":{"format":1,"build":"mf-45bdf7d-dirty-20260908T0721Z","exe_sha256":"970b7de729956a53094c7eb98aba4270aee98e2fed5daf0d39e290013c90c841","started":"2026-09-08T07:31:45Z","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":526381931,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":0,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x0e8d6de8","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":526382897,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":1,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x0e8d4fd8","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":526383111,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":2,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x1fad45f0","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":526383283,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":3,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x1fad2da8","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":526383579,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":4,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x1fad36e8","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":526383777,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":5,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x1fad3938","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":526385503,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":6,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x353aa120","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":526388062,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":7,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa91050","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":526388454,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":8,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa91330","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":526388814,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":9,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa91610","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":526389205,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":10,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa918f0","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":526389677,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":11,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa91bd0","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":526390084,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":12,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9542d8","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":526390448,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":13,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9545b8","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":526390822,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":14,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e954898","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":526391184,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":15,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e954b78","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":526391639,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":16,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e954e58","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":526392017,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":17,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e955138","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":526392391,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":18,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e955418","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":526392774,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":19,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9556f8","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":526393132,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":20,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9559d8","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":526393500,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":21,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e955cb8","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":526394034,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":22,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e955f98","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":569,"len":3}],"n":4}}
|
|
{"ts":526394454,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":23,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e956278","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":526394836,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":24,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e94fde8","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":526395196,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":25,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e950f58","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":526395552,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":26,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e94fb00","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":526395923,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":27,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e94f530","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":526396336,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":28,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e94f818","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":526396685,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":29,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9500d0","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":526397025,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":30,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e950988","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":526397342,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":31,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9503b8","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":526397709,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":32,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9506a0","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":526398061,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":33,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e950c70","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":526398412,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":34,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fad1e78","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":557985044,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":35,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x0e8d6de8","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":557985303,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":36,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x0e8d4fd8","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":557985649,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":37,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x1fad45f0","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":557985833,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":38,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x1fad2da8","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":557986051,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":39,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x1fad36e8","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":557986271,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":40,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x1fad3938","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":557986464,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":41,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x353aa120","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":557986720,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":42,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x353a8d78","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.1515913},"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":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":557987121,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":43,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa91050","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":557987613,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":44,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa91330","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":557988064,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":45,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa91610","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":557988513,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":46,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa918f0","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":557988989,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":47,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa91bd0","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":557989373,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":48,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9542d8","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":557989747,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":49,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9545b8","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":557990108,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":50,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e954898","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":557990458,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":51,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e954b78","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":557990828,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":52,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e954e58","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":557991219,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":53,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e955138","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":557991616,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":54,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e955418","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":557991980,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":55,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9556f8","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":557992333,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":56,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9559d8","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":557992698,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":57,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e955cb8","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":557993180,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":58,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e955f98","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":557993582,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":59,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e956278","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":557993960,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":60,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e94fde8","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":557994313,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":61,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e950f58","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":557994682,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":62,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e94fb00","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":557995040,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":63,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e94f530","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":557995403,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":64,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e94f818","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":557995769,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":65,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9500d0","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":557996166,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":66,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e950988","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":557996521,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":67,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9503b8","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":557996890,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":68,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9506a0","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":557997242,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":69,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e950c70","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":557997647,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":70,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fad1e78","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":557999278,"hook":"Game::ServerPlayer::OnTechResearched","mode":"compare","call_id":71,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e8f2ed0","n":"player"},{"t":"i32","v":1,"n":"player_index"},{"t":"i32","v":2,"n":"species"},{"t":"ptr","v":"0x04961428","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":"0x04961428"},"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":12},{"region":"player","off":688,"len":1}],"n":2}}
|
|
{"ts":589563350,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":72,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x0e8d6de8","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":589563674,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":73,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x0e8d4fd8","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":589563902,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":74,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x1fad45f0","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":589564071,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":75,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x1fad2da8","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":589564235,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":76,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x1fad36e8","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":589564549,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":77,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x1fad3938","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":589564771,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":78,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x353aa120","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":589564988,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":79,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x353a8d78","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.58417809},"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":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":2}}
|
|
{"ts":589565202,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":80,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x353aab88","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.21149492},"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":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":589565646,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":81,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa91050","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":589566002,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":82,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa91330","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":589566339,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":83,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa91610","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":589566682,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":84,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa918f0","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":589567078,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":85,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa91bd0","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":589567425,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":86,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9542d8","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":589567807,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":87,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9545b8","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":589568249,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":88,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e954898","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":589568624,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":89,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e954b78","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":589568967,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":90,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e954e58","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":589569292,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":91,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e955138","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":589569635,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":92,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e955418","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":589569967,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":93,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9556f8","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":589570299,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":94,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9559d8","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":589570641,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":95,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e955cb8","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":589571138,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":96,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e955f98","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":589571639,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":97,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e956278","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":589572102,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":98,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e94fde8","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":589572530,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":99,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e950f58","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":589572979,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":100,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e94fb00","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":589573409,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":101,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e94f530","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":589573838,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":102,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e94f818","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":589574194,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":103,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9500d0","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":589574550,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":104,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e950988","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":589574915,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":105,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9503b8","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":589575267,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":106,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9506a0","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":589575628,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":107,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e950c70","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":589576040,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":108,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fad1e78","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":621153877,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":109,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x0e8d6de8","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":621154136,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":110,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x0e8d4fd8","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":621154311,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":111,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x1fad45f0","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":621154490,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":112,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x1fad2da8","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":621154683,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":113,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x1fad36e8","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":621154860,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":114,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x1fad3938","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":621155060,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":115,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x353aa120","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":621155272,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":116,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x353a8d78","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.0167649984},"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":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":2}}
|
|
{"ts":621155451,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":117,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x353aab88","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":621155668,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":118,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x353ab028","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.14307928},"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":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":621156075,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":119,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa91050","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":621156595,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":120,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa91330","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":621156955,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":121,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa91610","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":621157281,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":122,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa918f0","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":621157678,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":123,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa91bd0","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":621158037,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":124,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9542d8","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":621158353,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":125,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9545b8","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":621158677,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":126,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e954898","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":621159043,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":127,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e954b78","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":621159429,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":128,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e954e58","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":621159800,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":129,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e955138","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":621160129,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":130,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e955418","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":621160441,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":131,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9556f8","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":621160772,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":132,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9559d8","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":621161087,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":133,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e955cb8","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":621161459,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":134,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e955f98","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":621161833,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":135,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e956278","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":621162191,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":136,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e94fde8","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":621162507,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":137,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e950f58","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":621162837,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":138,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e94fb00","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":621163152,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":139,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e94f530","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":621163512,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":140,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e94f818","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":621163931,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":141,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9500d0","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":621164294,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":142,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e950988","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":621164663,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":143,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9503b8","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":621165059,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":144,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9506a0","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":621165412,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":145,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e950c70","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":621165820,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":146,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fad1e78","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":621166509,"hook":"Game::ServerPlayer::OnTechResearched","mode":"compare","call_id":147,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e8f2ed0","n":"player"},{"t":"i32","v":1,"n":"player_index"},{"t":"i32","v":2,"n":"species"},{"t":"ptr","v":"0x04961558","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":"0x04961558"},"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":652736376,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":148,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x0e8d6de8","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":652736715,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":149,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x0e8d4fd8","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":652736967,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":150,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x1fad45f0","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":652737163,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":151,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x1fad2da8","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":652737340,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":152,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x1fad36e8","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":652737521,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":153,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x1fad3938","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":652737762,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":154,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x353aa120","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.234276652}}}},"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":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":652737982,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":155,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x353a8d78","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":652738173,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":156,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x353aab88","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.13544559},"y":{"t":"f32","v":3.19647574},"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":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":2}}
|
|
{"ts":652738353,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":157,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x353ab028","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.56715405},"z":{"t":"f32","v":0.700968981}}}},"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":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":2}}
|
|
{"ts":652738540,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":158,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa92a70","n":"server"},{"t":"ptr","v":"0x353aa248","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":652739069,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":159,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa91050","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":652739851,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":160,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa91330","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":652740220,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":161,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa91610","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":652740566,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":162,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa918f0","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":652740982,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":163,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fa91bd0","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":652741374,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":164,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9542d8","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":652741786,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":165,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9545b8","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":652742144,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":166,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e954898","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":652742515,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":167,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e954b78","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":652742915,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":168,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e954e58","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":652743271,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":169,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e955138","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":652743639,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":170,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e955418","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":652743991,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":171,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9556f8","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":652744342,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":172,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9559d8","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":652744711,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":173,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e955cb8","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":652745104,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":174,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e955f98","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":652745536,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":175,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e956278","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":652745944,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":176,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e94fde8","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":652746298,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":177,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e950f58","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":652746671,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":178,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e94fb00","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":652747023,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":179,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e94f530","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":652747374,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":180,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e94f818","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":652747737,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":181,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9500d0","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":652748093,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":182,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e950988","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":652748441,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":183,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9503b8","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":652748858,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":184,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e9506a0","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":652749260,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":185,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x0e950c70","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":652749730,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":186,"thread":2752,"depth":0,"args":[{"t":"ptr","v":"0x1fad1e78","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}}
|