CASM  1.1.0
A Clusters Approach to Statistical Mechanics
json_io.hh
Go to the documentation of this file.
1 // #ifndef CASM_app_enum_json_io
2 // #define CASM_app_enum_json_io
3 //
4 // #include <string>
5 // #include "casm/global/definitions.hh"
6 // #include "casm/global/eigen.hh"
7 //
8 // namespace CASM {
9 //
10 // struct KwargsParser;
11 //
12 // /// Parse a number or array value and return a vector
13 // Eigen::VectorXd parse_vector_from_number_or_array(
14 // KwargsParser &parser,
15 // std::string attribute_name,
16 // Index dimension,
17 // Eigen::VectorXd const *default_value = nullptr);
18 //
19 // /// Parse DoF space "axes", "min", "max", and "increment"
20 // void parse_dof_space_axes(KwargsParser &parser,
21 // Eigen::MatrixXd &axes,
22 // Eigen::VectorXd &min_val,
23 // Eigen::VectorXd &max_val,
24 // Eigen::VectorXd &inc_val,
25 // Index dof_space_dimension);
26 // }
27 //
28 // #endif