Changes to make flow compile with AutoDiffMatrix.

This commit is contained in:
Atgeirr Flø Rasmussen
2015-08-25 16:15:29 +02:00
committed by babrodtk
parent c712d0070d
commit c795113ce3
11 changed files with 195 additions and 109 deletions

View File

@@ -228,8 +228,10 @@ namespace Opm {
struct WellOps {
WellOps(const Wells* wells);
M w2p; // well -> perf (scatter)
M p2w; // perf -> well (gather)
// M w2p; // well -> perf (scatter)
// M p2w; // perf -> well (gather)
Eigen::SparseMatrix<double> w2p; // well -> perf (scatter)
Eigen::SparseMatrix<double> p2w; // perf -> well (gather)
};
// --------- Data members ---------