#include <tuple>
#include <memory>
Go to the source code of this file.
|
| | glasscore |
| | The namespace containing the core algorithm.
|
| |
|
| typedef std::tuple< std::weak_ptr< CNode >, double, std::string, double, std::string, double > | glasscore::NodeLink |
| | Typedef to simplify use of a site-node link. Contains a CNode pointer to the Node that it's linked to, and then 3 doubles: Nucleation Traveltime 1 (sec), Nucleation Traveltime 2 (sec), and Distance (between Node and Site) in Deg. Uses weak_ptr to prevent a cyclical reference. More...
|
| |
| typedef std::tuple< std::shared_ptr< CSite >, double, std::string, double, std::string, double > | glasscore::SiteLink |
| | Typedef to simplify use of a node-site link. Contains a CSite pointer to the Site that it's linked to, and then 3 doubles: Nucleation Traveltime 1 (sec), Nucleation Traveltime 2 (sec), and Distance (between Node and Site) in Deg. More...
|
| |