forked from LLNL/libROM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
QDEIM.h
31 lines (24 loc) · 782 Bytes
/
QDEIM.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/******************************************************************************
*
* Copyright (c) 2013-2019, Lawrence Livermore National Security, LLC
* and other libROM project developers. See the top-level COPYRIGHT
* file for details.
*
* SPDX-License-Identifier: (Apache-2.0 OR MIT)
*
*****************************************************************************/
// Description: Interface to the DEIM algorithm to determine the rows of the
// rhs to be sampled for the interpolation of the rhs.
#ifndef included_QDEIM_h
#define included_QDEIM_h
namespace CAROM {
class Matrix;
void
QDEIM(const Matrix* f_basis,
int num_f_basis_vectors_used,
int* f_sampled_row,
int* f_sampled_row_owner,
Matrix& f_basis_sampled,
int myid);
}
#endif