cpp/sims.h

19 lines
515 B
C
Raw Normal View History

2024-08-16 17:55:27 +00:00
//
// Created by dominik on 8/14/24.
//
#ifndef RWSIM_SIMS_H
#define RWSIM_SIMS_H
#include <unordered_map>
#include <string>
#include "motions/base.h"
#include "times/base.h"
void run_spectrum(std::unordered_map<std::string, double>& parameter, Motion& motion, Distribution& dist);
2024-08-20 15:51:49 +00:00
void run_ste(std::unordered_map<std::string, double>& parameter, Motion& motion, Distribution& dist);
2024-08-16 17:55:27 +00:00
void make_trajectory(Motion&, const Distribution&, double, std::vector<double>&, std::vector<double>&);
#endif //RWSIM_SIMS_H