Zoltan2
|
OrderingProblem sets up ordering problems for the user. More...
#include <Zoltan2_OrderingProblem.hpp>
Public Types | |
typedef Adapter::scalar_t | scalar_t |
typedef Adapter::gno_t | gno_t |
typedef Adapter::lno_t | lno_t |
typedef Adapter::user_t | user_t |
typedef Adapter::base_adapter_t | base_adapter_t |
Public Member Functions | |
virtual | ~OrderingProblem () |
Destructor. More... | |
OrderingProblem (Adapter *A, ParameterList *p, const RCP< const Teuchos::Comm< int > > &comm) | |
OrderingProblem (Adapter *A, ParameterList *p) | |
Constructor that uses a default communicator. More... | |
void | solve (bool updateInputData=true) |
Direct the problem to create a solution. More... | |
LocalOrderingSolution< lno_t > * | getLocalOrderingSolution () |
Get the local ordering solution to the problem. More... | |
GlobalOrderingSolution< gno_t > * | getGlobalOrderingSolution () |
Get the global ordering solution to the problem. More... | |
Public Member Functions inherited from Zoltan2::Problem< Adapter > | |
Problem (const Adapter *input, ParameterList *params, const RCP< const Comm< int > > &comm) | |
Constructor where Teuchos communicator is specified. More... | |
virtual | ~Problem () |
Destructor. More... | |
RCP< const Comm< int > > | getComm () |
Return the communicator used by the problem. More... | |
void | resetParameters (ParameterList *params) |
Reset the list of parameters. More... | |
void | printTimers () const |
Return the communicator passed to the problem. More... | |
const RCP< const Environment > & | getEnvironment () const |
Get the current Environment. Useful for testing. More... | |
Public Member Functions inherited from Zoltan2::ProblemRoot | |
virtual | ~ProblemRoot () |
Static Public Member Functions | |
static void | getValidParameters (ParameterList &pl) |
Set up validators specific to this Problem. More... | |
Static Public Member Functions inherited from Zoltan2::Problem< Adapter > | |
static void | getValidParameters (ParameterList &pl) |
Additional Inherited Members | |
Protected Types inherited from Zoltan2::Problem< Adapter > | |
typedef Adapter::base_adapter_t | base_adapter_t |
Protected Attributes inherited from Zoltan2::Problem< Adapter > | |
RCP< const Adapter > | inputAdapter_ |
RCP< const base_adapter_t > | baseInputAdapter_ |
RCP< GraphModel< base_adapter_t > > | graphModel_ |
RCP< IdentifierModel < base_adapter_t > > | identifierModel_ |
RCP< CoordinateModel < base_adapter_t > > | coordinateModel_ |
RCP< const Model < base_adapter_t > > | baseModel_ |
RCP< Algorithm< Adapter > > | algorithm_ |
RCP< ParameterList > | params_ |
RCP< const Comm< int > > | comm_ |
RCP< Environment > | env_ |
RCP< const Environment > | envConst_ |
RCP< TimerManager > | timer_ |
OrderingProblem sets up ordering problems for the user.
The OrderingProblem is the core of the Zoltan2 ordering API. Based on the the user's input and parameters, the OrderingProblem sets up a computational Model, and a Solution object. When the user calls the solve() method, the OrderingProblem runs the algorithm, after which the Solution object may be obtained by the user.
include pointers to examples
- Should Problems and Solution have interfaces for returning views and for returning RCPs? Or just one? At a minimum, we should have the word "View" in function names that return views.
The template parameter is the InputAdapter containing the data that is to be partitioned.
Definition at line 95 of file Zoltan2_OrderingProblem.hpp.
typedef Adapter::scalar_t Zoltan2::OrderingProblem< Adapter >::scalar_t |
Definition at line 99 of file Zoltan2_OrderingProblem.hpp.
typedef Adapter::gno_t Zoltan2::OrderingProblem< Adapter >::gno_t |
Definition at line 100 of file Zoltan2_OrderingProblem.hpp.
typedef Adapter::lno_t Zoltan2::OrderingProblem< Adapter >::lno_t |
Definition at line 101 of file Zoltan2_OrderingProblem.hpp.
typedef Adapter::user_t Zoltan2::OrderingProblem< Adapter >::user_t |
Definition at line 102 of file Zoltan2_OrderingProblem.hpp.
typedef Adapter::base_adapter_t Zoltan2::OrderingProblem< Adapter >::base_adapter_t |
Definition at line 103 of file Zoltan2_OrderingProblem.hpp.
|
inlinevirtual |
Destructor.
Definition at line 111 of file Zoltan2_OrderingProblem.hpp.
|
inline |
Definition at line 113 of file Zoltan2_OrderingProblem.hpp.
|
inline |
Constructor that uses a default communicator.
Definition at line 133 of file Zoltan2_OrderingProblem.hpp.
|
inlinestatic |
Set up validators specific to this Problem.
Definition at line 139 of file Zoltan2_OrderingProblem.hpp.
|
virtual |
Direct the problem to create a solution.
Implements Zoltan2::ProblemRoot.
Definition at line 233 of file Zoltan2_OrderingProblem.hpp.
|
inline |
Get the local ordering solution to the problem.
Definition at line 188 of file Zoltan2_OrderingProblem.hpp.
|
inline |
Get the global ordering solution to the problem.
Definition at line 201 of file Zoltan2_OrderingProblem.hpp.