Page MenuHomec4science

dof_association.hh
No OneTemporary

File Metadata

Created
Sun, May 26, 07:18

dof_association.hh

/**
* @file dof_association.hh
*
* @author Guillaume Anciaux <guillaume.anciaux@epfl.ch>
*
* @date Tue Jan 21 12:37:46 2014
*
* @brief Mother of all object which associates DOFs for coupling purpose
*
* @section LICENSE
*
* Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* LibMultiScale is free software: you can redistribute it and/or modify it
* under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* LibMultiScale is distributed in the hope that it will be useful, but
* WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with LibMultiScale. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef __LIBMULTISCALE_DOF_ASSOCIATION_HH__
#define __LIBMULTISCALE_DOF_ASSOCIATION_HH__
/* -------------------------------------------------------------------------- */
#include "compute_extract.hh"
#include "dof_association_interface.hh"
#include "duo_distributed_vector.hh"
#include "lm_parsable.hh"
#include "spatial_grid_libmultiscale.hh"
/* -------------------------------------------------------------------------- */
__BEGIN_LIBMULTISCALE__
class DofAssociation : public virtual DofAssociationInterface {
public:
DofAssociation(const std::string &name);
virtual ~DofAssociation();
protected:
//! the spatial grid used to speedup the association build
// std::unique_ptr<SpatialGridLibMultiScale<UInt, ContainerA::Dim>> grid;
// //! Container of whatever
// ContainerA &contA;
// //! Container of whatever
// ContainerB &contB;
};
/* -------------------------------------------------------------------------- */
__END_LIBMULTISCALE__
#endif /* __LIBMULTISCALE_DOF_ASSOCIATION_HH__ */

Event Timeline