Skip to content
Snippets Groups Projects
Commit 5aea25a6 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Deal with Fortran 'real' type

parent 4b460f71
No related branches found
No related tags found
No related merge requests found
......@@ -300,6 +300,7 @@ class F2LoopyTranslator(FTreeWalkerBase):
raise NotImplementedError("equivalence")
TYPE_MAP = {
("real", ""): np.float32,
("real", "4"): np.float32,
("real", "8"): np.float64,
("doubleprecision", ""): np.float64,
......
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