Skip to content
Snippets Groups Projects
Forked from agnumpde / dune-tectonic
460 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
enums.hh 179 B
#ifndef ENUMS_HH
#define ENUMS_HH

struct Config {
  enum state_model {
    Dieterich,
    Ruina
  };
  enum scheme {
    ImplicitEuler,
    Newmark,
    EulerPair
  };
};
#endif