move files
This commit is contained in:
parent
f1749a0af2
commit
1eb3e3be2d
@ -4,10 +4,10 @@ project(RWSim VERSION 1.0)
|
|||||||
set(CMAKE_CXX_STANDARD 17)
|
set(CMAKE_CXX_STANDARD 17)
|
||||||
|
|
||||||
add_executable(rwsim main.cpp
|
add_executable(rwsim main.cpp
|
||||||
functions.cpp
|
utils/functions.h
|
||||||
functions.h
|
utils/functions.cpp
|
||||||
io.cpp
|
utils/io.cpp
|
||||||
io.h
|
utils/io.h
|
||||||
motions/base.cpp
|
motions/base.cpp
|
||||||
motions/base.h
|
motions/base.h
|
||||||
motions/random.cpp
|
motions/random.cpp
|
||||||
@ -16,10 +16,10 @@ add_executable(rwsim main.cpp
|
|||||||
times/base.h
|
times/base.h
|
||||||
times/delta.cpp
|
times/delta.cpp
|
||||||
times/delta.h
|
times/delta.h
|
||||||
sims.cpp
|
simulation/sims.cpp
|
||||||
sims.h
|
simulation/sims.h
|
||||||
ranges.cpp
|
utils/ranges.cpp
|
||||||
ranges.h
|
utils/ranges.h
|
||||||
motions/tetrahedral.cpp
|
motions/tetrahedral.cpp
|
||||||
motions/tetrahedral.h
|
motions/tetrahedral.h
|
||||||
motions/isosmallangle.cpp
|
motions/isosmallangle.cpp
|
||||||
|
4
main.cpp
4
main.cpp
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
|
|
||||||
#include "io.h"
|
#include "utils/io.h"
|
||||||
#include "sims.h"
|
#include "simulation/sims.h"
|
||||||
#include "motions/base.h"
|
#include "motions/base.h"
|
||||||
#include "times/delta.h"
|
#include "times/delta.h"
|
||||||
#include "times/lognormal.h"
|
#include "times/lognormal.h"
|
||||||
|
@ -1,6 +1,10 @@
|
|||||||
//
|
#include "sims.h"
|
||||||
// Created by dominik on 8/14/24.
|
#include "../motions/base.h"
|
||||||
//
|
#include "../times/base.h"
|
||||||
|
#include "../utils/functions.h"
|
||||||
|
#include "../utils/ranges.h"
|
||||||
|
#include "../utils/io.h"
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
@ -10,12 +14,6 @@
|
|||||||
#include <cmath>
|
#include <cmath>
|
||||||
#include <chrono>
|
#include <chrono>
|
||||||
|
|
||||||
#include "motions/base.h"
|
|
||||||
#include "times/base.h"
|
|
||||||
#include "functions.h"
|
|
||||||
#include "ranges.h"
|
|
||||||
#include "sims.h"
|
|
||||||
#include "io.h"
|
|
||||||
|
|
||||||
|
|
||||||
void run_spectrum(std::unordered_map<std::string, double>& parameter, Motion& motion, Distribution& dist) {
|
void run_spectrum(std::unordered_map<std::string, double>& parameter, Motion& motion, Distribution& dist) {
|
@ -5,12 +5,12 @@
|
|||||||
#ifndef RWSIM_SIMS_H
|
#ifndef RWSIM_SIMS_H
|
||||||
#define RWSIM_SIMS_H
|
#define RWSIM_SIMS_H
|
||||||
|
|
||||||
|
#include "../motions/base.h"
|
||||||
|
#include "../times/base.h"
|
||||||
|
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#include "motions/base.h"
|
|
||||||
#include "times/base.h"
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Run simulation for spectra
|
* @brief Run simulation for spectra
|
||||||
*
|
*
|
@ -1,7 +1,3 @@
|
|||||||
//
|
|
||||||
// Created by dominik on 8/14/24.
|
|
||||||
//#
|
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <array>
|
#include <array>
|
||||||
#include <chrono>
|
#include <chrono>
|
Loading…
Reference in New Issue
Block a user