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

struct Config {
  enum FrictionModel {
    Truncated,
    Regularised
  };
  enum stateModel {
    AgeingLaw,
    SlipLaw
  };
  enum scheme {
    Newmark,
    BackwardEuler
  };
};

#endif