#include "Stokhos.hpp"
#include "Teuchos_CommandLineProcessor.hpp"
Go to the source code of this file.
|
| enum | BasisType {
HERMITE
, LEGENDRE
, CC_LEGENDRE
, GP_LEGENDRE
,
RYS
, JACOBI
} |
| |
| enum | ProductBasisType { COMPLETE
, TENSOR
, TOTAL
, SMOLYAK
} |
| |
| enum | OrderingType { TOTAL_ORDERING
, LEXICOGRAPHIC_ORDERING
, MORTON_Z_ORDERING
} |
| |
◆ BasisType
| Enumerator |
|---|
| HERMITE | |
| LEGENDRE | |
| CC_LEGENDRE | |
| GP_LEGENDRE | |
| RYS | |
| JACOBI | |
Definition at line 55 of file basis.cpp.
◆ ProductBasisType
| Enumerator |
|---|
| COMPLETE | |
| TENSOR | |
| TOTAL | |
| SMOLYAK | |
Definition at line 69 of file basis.cpp.
◆ OrderingType
| Enumerator |
|---|
| TOTAL_ORDERING | |
| LEXICOGRAPHIC_ORDERING | |
| MORTON_Z_ORDERING | |
Definition at line 77 of file basis.cpp.
◆ main()
| int main |
( |
int | argc, |
|
|
char ** | argv ) |
◆ num_basis_types
| const int num_basis_types = 6 |
◆ basis_type_values
Initial value:
Definition at line 57 of file basis.cpp.
◆ basis_type_names
| const char* basis_type_names[] |
Initial value:= {
"hermite", "legendre", "clenshaw-curtis", "gauss-patterson", "rys", "jacobi" }
Definition at line 59 of file basis.cpp.
◆ num_growth_types
| const int num_growth_types = 2 |
◆ growth_type_values
Initial value:
Definition at line 64 of file basis.cpp.
◆ growth_type_names
| const char* growth_type_names[] = { "slow", "moderate" } |
◆ num_prod_basis_types
| const int num_prod_basis_types = 4 |
◆ prod_basis_type_values
Initial value:
Definition at line 71 of file basis.cpp.
◆ prod_basis_type_names
| const char* prod_basis_type_names[] |
Initial value:= {
"complete", "tensor", "total", "smolyak" }
Definition at line 73 of file basis.cpp.
◆ num_ordering_types
| const int num_ordering_types = 3 |
◆ ordering_type_values
Initial value:
Definition at line 79 of file basis.cpp.
◆ ordering_type_names
| const char* ordering_type_names[] |
Initial value:= {
"total", "lexicographic", "morton-z" }
Definition at line 81 of file basis.cpp.