Skip to content

Commit

Permalink
missing (c)
Browse files Browse the repository at this point in the history
  • Loading branch information
geuzaine committed Jan 22, 2019
1 parent 0ac53b2 commit 1fb3cbe
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 7 deletions.
6 changes: 5 additions & 1 deletion Geo/MTrihedron.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
#include "GmshConfig.h"
// Gmsh - Copyright (C) 1997-2019 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// issues on https://gitlab.onelab.info/gmsh/gmsh/issues.

#include "MTrihedron.h"

int MTrihedron::numCommonNodesInDualGraph(const MElement *const other) const
Expand Down
5 changes: 5 additions & 0 deletions Geo/MTrihedron.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Gmsh - Copyright (C) 1997-2019 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// issues on https://gitlab.onelab.info/gmsh/gmsh/issues.

#ifndef _MTRIHEDRON_H_
#define _MTRIHEDRON_H_

Expand Down
7 changes: 5 additions & 2 deletions Numeric/InnerVertexPlacement.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
// Gmsh - Copyright (C) 1997-2019 C. Geuzaine, J.-F. Remacle
//
// Created by Amaury Johnen on 13/02/18.
// See the LICENSE.txt file for license information. Please report all
// issues on https://gitlab.onelab.info/gmsh/gmsh/issues.
//
// Contributed by Amaury Johnen

#include "InnerVertexPlacement.h"
#include "pointsGenerators.h"
Expand Down Expand Up @@ -662,4 +665,4 @@ fullMatrix<double> gmshGenerateInnerVertexPlacementPrismLinear(int order,
return M;
}

#undef make_mytuple
#undef make_mytuple
11 changes: 7 additions & 4 deletions Numeric/InnerVertexPlacement.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
// Gmsh - Copyright (C) 1997-2019 C. Geuzaine, J.-F. Remacle
//
// Created by Amaury Johnen on 13/02/18.
// See the LICENSE.txt file for license information. Please report all
// issues on https://gitlab.onelab.info/gmsh/gmsh/issues.
//
// Contributed by Amaury Johnen

#ifndef GMSH_INTERIORVERTEXPLACEMENT_H
#define GMSH_INTERIORVERTEXPLACEMENT_H
#ifndef _INTERIOR_VERTEX_PLACEMENT_H_
#define _INTERIOR_VERTEX_PLACEMENT_H_

#include "fullMatrix.h"

Expand Down Expand Up @@ -34,4 +37,4 @@ fullMatrix<double> gmshGenerateInnerVertexPlacementHexahedronLinear(int order,
fullMatrix<double> gmshGenerateInnerVertexPlacementPrismLinear(int order,
int dir);

#endif // GMSH_INTERIORVERTEXPLACEMENT_H
#endif
8 changes: 8 additions & 0 deletions Numeric/hausdorffDistance.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
// Gmsh - Copyright (C) 1997-2019 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// issues on https://gitlab.onelab.info/gmsh/gmsh/issues.

#ifndef _HAUSDORFF_DISTANCE_H_
#define _HAUSDORFF_DISTANCE_H_

#include <vector>
#include "SPoint3.h"

double hausdorffDistance(const std::vector<SPoint3> &P,
const std::vector<SPoint3> &Q);

#endif
6 changes: 6 additions & 0 deletions Solver/frameSolver.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Gmsh - Copyright (C) 1997-2019 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// issues on https://gitlab.onelab.info/gmsh/gmsh/issues.

#include "GmshConfig.h"
#include "GModel.h"
#include "GVertex.h"
Expand All @@ -7,6 +12,7 @@
#include "linearSystemPETSc.h"
#include "linearSystemGMM.h"
#include "linearSystemFull.h"

#if defined(HAVE_POST)
#include "PView.h"
#include "PViewData.h"
Expand Down

0 comments on commit 1fb3cbe

Please sign in to comment.