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
|
// Copyright (C) 2016 EDF
// All Rights Reserved
// This code is published under the GNU Lesser General Public License (GNU LGPL)
#ifndef SPARSEGRIDHIERARONEPOINTBOUND_H
#define SPARSEGRIDHIERARONEPOINTBOUND_H
#include "StOpt/core/sparse/SparseGridHierarOnePoint.h"
/** \file SparseGridHierarOnePointBound.h
* \brief Base class to Hierarchize a single point
* \author Xavier Warin
*/
namespace StOpt
{
/// \class SparseGridHierarOnePointBound SparseGridHierarOnePointBound.h
/// Abstract class for only only point Hierarchization with boundary points
class SparseGridHierarOnePointBound : SparseGridHierarOnePoint
{
public :
/// \brief Default constructor
SparseGridHierarOnePointBound() {}
/// \brief Default destructor
virtual ~SparseGridHierarOnePointBound() {}
};
}
#endif /* SPARSEGRIDHIERARONEPOINTBOUND_H */
|