source: issm/trunk-jpl/src/c/classes/Constraints/Constraints.h@ 23533

Last change on this file since 23533 was 23533, checked in by Mathieu Morlighem, 6 years ago

BUG: fixed numbering

File size: 698 bytes
Line 
1#ifndef _CONTAINER_CONSTRAINTS_H_
2#define _CONTAINER_CONSTRAINTS_H_
3
4/*forward declarations */
5#include "../../datastructures/datastructures.h"
6#include "../../shared/shared.h"
7
8/*! \brief Declaration of Constraints class.
9 *
10 * Declaration of Constraints class for handling Single Point Constraints (SPCs).
11 * Constraints are vector lists (Containers) of Constraint objects.
12 */
13class Constraints: public DataSet{
14
15 public:
16
17 /*Object constructors and destructor*/
18 Constraints(){/*{{{*/
19 enum_type=ConstraintsEnum;
20 return;
21 }
22 /*}}}*/
23 ~Constraints(){/*{{{*/
24 return;
25 }
26 /*}}}*/
27
28 /*numerics*/
29 void ActivatePenaltyMethod(int in_analysis);
30};
31
32#endif //ifndef _CONSTRAINTS_H_
Note: See TracBrowser for help on using the repository browser.