mirror of
https://git.gfz-potsdam.de/naaice/poet.git
synced 2025-12-16 04:48:23 +01:00
fixed typo in constructor
This commit is contained in:
parent
5fed0a4a3e
commit
a7ac708977
@ -4,7 +4,7 @@
|
||||
|
||||
using namespace poet;
|
||||
|
||||
TransportSim::TransportSim(RRuntime &R_) : R(_R) {}
|
||||
TransportSim::TransportSim(RRuntime &R_) : R(R_) {}
|
||||
|
||||
void TransportSim::runIteration() {
|
||||
double sim_a_transport, sim_b_transport;
|
||||
@ -16,4 +16,4 @@ void TransportSim::runIteration() {
|
||||
transport_t += sim_a_transport - sim_b_transport;
|
||||
}
|
||||
|
||||
double TransportSim::getTransportTime { return this->transport_t; }
|
||||
double TransportSim::getTransportTime() { return this->transport_t; }
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user