Skip to content
Snippets Groups Projects
Commit ed6eb3da authored by Sander, Oliver's avatar Sander, Oliver
Browse files

ChiralSkyrmionDensity: Make material parameters 'double'

They were 'field_type' before, which is 'adouble' when used
together with ADOL-C (the typical case).  But using 'adouble'
for parameters is unnecessary and wasteful.
parent 2b91a036
No related branches found
No related tags found
1 merge request!154Various minor fixes and improvements
...@@ -81,8 +81,8 @@ namespace Dune::GFE ...@@ -81,8 +81,8 @@ namespace Dune::GFE
} }
private: private:
field_type h_; double h_;
field_type kappa_; double kappa_;
}; };
} // namespace Dune::GFE } // namespace Dune::GFE
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment