8#include "plumbing/com_mpi.h"
55 std::ifstream inputfile;
56 bool is_initialized =
false;
61 std::string linebuffer;
66 std::vector<std::string> cmdline_p;
73 input(
const std::string &fname) {
95 bool open(
const std::string &fname,
bool use_cmdline =
true,
bool exit_on_error =
true);
127 returntype(
const std::string &str,
input *a) : label(str), parent(a) {}
132 template <
typename T, std::enable_if_t<(hila::is_complex_or_arithmetic<T>::value &&
133 !std::is_same<T,
char>::value) ||
134 std::is_same<T, std::
string>::value,
138 if (!parent->
get_value(val, label,
true))
143 template <
typename T,
int n>
146 if (!parent->
get_value(val, label,
true))
153 if (!parent->
get_value(val, label,
true))
158 template <typename T, std::enable_if_t<hila::is_complex_or_arithmetic<T>::value ||
159 std::is_same<T, std::string>::value,
161 operator std::vector<T>() {
163 if (!parent->
get_value(val, label,
true))
276 inline returntype get() {
277 return returntype(
"",
this);
304 template <
typename T>
305 bool get_value(T &val,
const std::string &label,
bool bcast =
true) {
307 bool no_error = handle_key(label);
311 if (!(get_token(tok) && is_value(tok, val))) {
314 hila::out <<
"Error: expecting a value of type '" << type_id<T>() <<
"' after '"
323 if constexpr (std::is_same<T, std::string>::value) {
335 template <
typename T>
338 bool no_error = handle_key(label);
345 (match_token(
"(") && get_token(tok) && is_value(tok, re) && match_token(
",") &&
346 get_token(tok) && is_value(tok, im) && match_token(
")"));
347 if (!no_error && speaking) {
348 hila::out <<
"Error: expecting complex value '(re,im)' after '" << label <<
"'\n";
360 template <
int n,
typename T>
363 bool no_error =
true;
366 no_error =
get_value(val[0], label,
false);
367 for (
int i = 1; i < n && no_error; i++) {
368 no_error =
get_value(val[i],
",",
false);
371 if (!no_error && speaking) {
372 hila::out <<
"Error: expecting " << n <<
" comma-separated " << type_id<T>()
373 <<
"s after '" << label <<
"'\n";
384 template <
int n = NDIM>
393 template <
typename T>
394 bool get_value(std::vector<T> &val,
const std::string &label,
bool bcast =
true) {
396 bool no_error =
true;
402 while (no_error && match_token(
",")) {
407 if (!no_error && speaking) {
408 hila::out <<
"Error: expecting a comma-separated list of " << type_id<T>()
409 <<
"s after '" << label <<
"'\n";
469 int get_item(
const std::string &label,
const std::vector<std::string> &items,
474 template <
typename T>
475 inline const char *type_id() {
479 bool peek_token(std::string &tok);
480 bool get_token(std::string &tok);
481 bool match_token(
const std::string &tok);
483 void scan_cmdline(
const std::string &key,
int &end_of_key);
485 bool scan_string(std::string &val);
487 template <typename T, std::enable_if_t<std::is_arithmetic<T>::value,
int> = 0>
488 bool is_value(
const std::string &s, T &val) {
489 std::istringstream ss(s);
491 if (ss.fail() || ss.bad())
497 bool is_value(
const std::string &s, std::string &val);
499 bool contains_word_list(
const std::string &list,
int &end_of_key);
501 std::string remove_quotes(
const std::string &val);
503 void print_linebuf(
int eok);
506 bool handle_key(
const std::string &c);
508 bool remove_whitespace();
514inline const char *input::type_id<int>() {
518inline const char *input::type_id<long>() {
522inline const char *input::type_id<long long>() {
526inline const char *input::type_id<unsigned int>() {
527 return "unsigned int";
530inline const char *input::type_id<unsigned long>() {
531 return "unsigned long";
534inline const char *input::type_id<unsigned long long>() {
535 return "unsigned long long";
539inline const char *input::type_id<float>() {
543inline const char *input::type_id<double>() {
547inline const char *input::type_id<std::string>() {
551inline const char *input::type_id<Complex<float>>() {
552 return "complex value";
555inline const char *input::type_id<Complex<double>>() {
556 return "complex value";
Matrix class which defines matrix operations.
CoordinateVector_t< int > CoordinateVector
CoordinateVector alias for CoordinateVector_t.
This file defines all includes for HILA.
Implement hila::swap for gauge fields.
int myrank()
rank of this node
std::ostream out
this is our default output file stream
T broadcast(T &var, int rank=0)
Broadcast the value of var to all MPI ranks from rank (default=0).
void finishrun()
Normal, controlled exit - all nodes must call this. Prints timing information and information about c...
void broadcast2(T &t, U &u, int rank=0)
and broadcast with two values