removing temporary build artifacts that were accidentally committed

This commit is contained in:
Travis Hunter 2023-04-10 18:36:48 -06:00
parent f595562de9
commit ed34061195
3 changed files with 3 additions and 1250 deletions

1244
Makefile

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +0,0 @@
<!DOCTYPE RCC><RCC version="1.0">
<qresource prefix="i18n">
<file alias="qtrocket_en_US.qm">/home/travis/qtrocket/master/.qm/qtrocket_en_US.qm</file>
</qresource>
</RCC>

View File

@ -50,14 +50,16 @@ void Propagator::runUntilTerminate()
{ {
// nextState gets overwritten // nextState gets overwritten
integrator->step(currentTime, currentState, tempRes); integrator->step(currentTime, currentState, tempRes);
/*
std::size_t size = currentState.size(); std::size_t size = currentState.size();
for(size_t i = 0; i < size; ++i) for(size_t i = 0; i < size; ++i)
{ {
currentState[i] = tempRes[i]; currentState[i] = tempRes[i];
tempRes[i] = 0; tempRes[i] = 0;
} }
*/
//std::swap(currentState, nextState); std::swap(currentState, nextState);
if(saveStates) if(saveStates)
{ {
states.push_back(currentState); states.push_back(currentState);