-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrownian_agent.cpp
94 lines (73 loc) · 2.03 KB
/
brownian_agent.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#include <iostream>
#include <random>
struct Position {
double x, y;
Position &operator*=(double scalar) {
x *= scalar;
y *= scalar;
return *this;
}
Position operator*(double scalar) {
Position scaled = *this;
scaled *= scalar;
return scaled;
}
Position &operator+=(Position other) {
x += other.x;
y += other.y;
return *this;
}
Position operator+(Position other) {
Position translated = *this;
translated += other;
return translated;
}
Position &operator-=(Position other) {
x -= other.x;
y -= other.y;
return *this;
}
Position operator-(Position other) {
Position translated = *this;
translated -= other;
return translated;
}
};
Position operator*(double scalar, Position position) {
return position * scalar;
}
struct Agent {
Position position;
friend std::ostream &operator<<(std::ostream &os, const Agent &a) {
return os << "(" << a.position.x << ", " << a.position.y << ")";
}
};
Position potential_gradient(Position p) { return p; }
template <class RNG>
void move(RNG &rng, const double noise, const double /*t*/, const double dt,
Agent &agent) {
static std::normal_distribution<double> standart_normal_dist(0.0, 1.0);
const Position random_direction = {standart_normal_dist(rng),
standart_normal_dist(rng)};
agent.position = agent.position - dt * potential_gradient(agent.position) +
(noise * std::sqrt(dt)) * random_direction;
}
int main() {
const int n = 1;
std::random_device rd{};
std::mt19937 rng{rd()};
std::normal_distribution<double> standart_normal_dist(0.0, 1.0);
std::vector<Agent> population(n);
for (Agent &agent : population) {
agent.position = {standart_normal_dist(rng), standart_normal_dist(rng)};
}
const double tmax = 1;
const double dt = 0.1;
for (double time = 0; time < tmax; time += dt) {
for (Agent &agent : population) {
move(rng, 0, time, dt, agent);
std::cout << agent << "\n";
}
}
return 0;
}