flippy
a c++20 package for dynamically triangulated membrane simulations.
Loading...
Searching...
No Matches
flippy.hpp
Go to the documentation of this file.
1/*
2 *```txt
3 *
4 * .d888 888 d8b
5 * d88P" 888 Y8P
6 * 888 888
7 * 888888 888 888 88888b. 88888b. 888 888
8 * 888 888 888 888 "88b 888 "88b 888 888 simulating package for
9 * 888 888 888 888 888 888 888 888 888 dynamically triangulated
10 * 888 888 888 888 d88P 888 d88P Y88b 888 surfaces
11 * 888 888 888 88888P" 88888P" "Y88888
12 * 888 888 888 version 1.1.0
13 * 888 888 Y8b d88P
14 * 888 888 "Y88P"
15 *
16 * https://github.com/flippy-software-package/flippy
17 *
18 *
19 * MIT License
20 *
21 * Copyright (c) 2021 George Dadunashvili
22 *
23 * Permission is hereby granted, free of charge, to any person obtaining a copy
24 * of this software and associated documentation files (the "Software"), to deal
25 * in the Software without restriction, including without limitation the rights
26 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
27 * copies of the Software, and to permit persons to whom the Software is
28 * furnished to do so, subject to the following conditions:
29 *
30 * The above copyright notice and this permission notice shall be included in all
31 * copies or substantial portions of the Software.
32 *
33 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
34 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
35 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
36 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
37 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
38 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
39 * SOFTWARE.
40 *```
41 */
42
43
48#ifndef FLIPPY_FLIPPY_HPP
49#define FLIPPY_FLIPPY_HPP
50
51#include "external/json.hpp"
52#include "custom_concepts.hpp"
53#include "vec3.hpp"
54#include "Nodes.hpp"
55#include "Triangulation.hpp"
56#include "MonteCarloUpdater.hpp"
57#include "utilities/utils.hpp"
58#include "utilities/sim_utils.hpp"
59#include "utilities/DataIO.hpp"
60
61#endif //FLIPPY_FLIPPY_HPP
This file contains the MonteCarloUpdater class template. Together with Triangulation....
This file contains the fp::Node and fp::Nodes classes, data structures that represent a single node o...
This file contains the fp::Triangulation class and several related helper classes....
This file contains the concepts that are costomly defined for the flippy class templates.
This file contains helper functions that are used throughout flippy, but are not specific to any give...
Header file containing the definition and implementation a 3 dimensional vector class,...