Stokhos Package Browser (Single Doxygen Collection)  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Stokhos_ExpansionFactory.hpp
Go to the documentation of this file.
1 // @HEADER
2 // *****************************************************************************
3 // Stokhos Package
4 //
5 // Copyright 2009 NTESS and the Stokhos contributors.
6 // SPDX-License-Identifier: BSD-3-Clause
7 // *****************************************************************************
8 // @HEADER
9 
10 #ifndef STOKHOS_EXPANSION_FACTORY_HPP
11 #define STOKHOS_EXPANSION_FACTORY_HPP
12 
13 #include "Teuchos_RCP.hpp"
16 
17 namespace Stokhos {
18 
20  template <typename ordinal_type, typename value_type>
22  public:
23 
26 
28  virtual ~ExpansionFactory() {};
29 
32  create(Teuchos::ParameterList& sgParams);
33 
34  private:
35 
36  // Prohibit copying
38 
39  // Prohibit Assignment
41 
42  }; // class ExpansionFactory
43 
44 } // Namespace Stokhos
45 
46 // Include template definitions
48 
49 #endif // STOKHOS_EXPANSION_FACTORY_HPP
ExpansionFactory & operator=(const ExpansionFactory &b)
virtual ~ExpansionFactory()
Destructor.
static Teuchos::RCP< Stokhos::OrthogPolyExpansion< ordinal_type, value_type > > create(Teuchos::ParameterList &sgParams)
Generate multivariate expansion.
Factory for building multivariate expansion strategies.