OGS
IndexValueVector.h
Go to the documentation of this file.
1 
11 #pragma once
12 
13 #include <vector>
14 
15 namespace NumLib
16 {
17 template <typename IndexType>
18 struct IndexValueVector final
19 {
20  std::vector<IndexType> ids;
21  std::vector<double> values;
22 };
23 
24 } // namespace NumLib
std::vector< IndexType > ids
std::vector< double > values