fwi: split into input and solver

All branches compile with several hacks.
This commit is contained in:
2021-01-29 15:33:12 +01:00
committed by Aleix Roca Nonell
parent 9bea3cc264
commit bfbbc294ae
5 changed files with 114 additions and 50 deletions

View File

@@ -53,5 +53,10 @@
hpccg = callPackage ./hpccg/default.nix { };
fwi = callPackage ./fwi/default.nix { };
fwi = rec {
input = callPackage ./fwi/input.nix { };
solver = callPackage ./fwi/default.nix {
fwiInput = input;
};
};
}