From 56cb20ca826a42a14e73d271f65f5685f37a4f71 Mon Sep 17 00:00:00 2001 From: Anson Biggs Date: Fri, 17 Sep 2021 13:09:28 -0700 Subject: [PATCH] forgot a merge issue --- include/sim.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/include/sim.h b/include/sim.h index fe0ce63..9858ace 100644 --- a/include/sim.h +++ b/include/sim.h @@ -18,14 +18,11 @@ double const g = -9.81; bool sim(struct Vehicle &State, struct Vehicle &PrevState) { -<<<<<<< HEAD // defining a few random values here cause I'm lazy State.burnElapsed = 2000; State.mass = State.massInitial; PrevState.thrust = 0.0; -======= outVector stateVector; ->>>>>>> 3-store-data-in-memory // Determine when to burn burnStartTimeCalc(State); @@ -41,11 +38,7 @@ bool sim(struct Vehicle &State, struct Vehicle &PrevState) { state2vec(State, stateVector, t); t++; -<<<<<<< HEAD } while ((State.z > 0.0) || (State.thrust > 1.0)); -======= - } while ((State.z > 0) || (State.thrust > 1)); ->>>>>>> 3-store-data-in-memory write2CSV(stateVector);