14 lines
321 B
C++
14 lines
321 B
C++
//
|
|
// Created by jholder on 10/25/21.
|
|
//
|
|
#include "Rod2d.hpp"
|
|
#include "Simulation.h"
|
|
#include "legacy/Integratoren2d_forceless.h"
|
|
int main(){
|
|
Rod2d rod(1.0);
|
|
Simulation sim(0.01, 1);
|
|
for (int i = 0; i < 10000000; ++i) {
|
|
Integratoren2d_forceless::Set1_Euler(rod, sim);
|
|
}
|
|
return EXIT_SUCCESS;
|
|
} |