Skip to content

Commit f8cea0a

Browse files
committed
file rename
1 parent fe0f7fd commit f8cea0a

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

gbs/bscurve.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#pragma once
22
#include <gbs/basisfunctions.h>
33
#include <gbs/knotsfunctions.h>
4-
#include <gbs/math.h>
4+
#include <gbs/maths.h>
55
#include <gbs/vecop.h>
66

77
#include <vector>

gbs/knotsfunctions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include <gbs/gbslib.h>
33
#include <gbs/vecop.h>
44
#include <gbs/basisfunctions.h>
5-
#include <gbs/math.h>
5+
#include <gbs/maths.h>
66

77
#include <Eigen/Dense>
88

gbs/math.h renamed to gbs/maths.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
22
#include <vector>
3-
3+
#include <gbs/vecop.h>
44

55
namespace gbs
66
{

tests/tests_basisfunctions.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <gtest/gtest.h>
22

33
#include <gbs/basisfunctions.h>
4-
#include <gbs/math.h>
4+
#include <gbs/maths.h>
55
#include <gbs-occt/geomprim.h>
66
#include <gbs-occt/curvesbuild.h>
77
#include <gbs-occt/export.h>

tests/tests_bscbuild.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#include <gbs-render/vtkcurvesrender.h>
66
#include <gbs-occt/curvesbuild.h>
77
#include <gbs-occt/export.h>
8-
#include <math.h>
8+
#include <gbs/maths.h>
99
const double tol = 1e-10;
1010

1111
using gbs::operator-;

tests_3rdlibs/tests_sundials_examples.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343

4444
#include <stdio.h>
4545
#include <stdlib.h>
46-
#include <math.h>
46+
#include <maths.h>
4747

4848
#include <kinsol/kinsol.h> /* access to KINSOL func., consts. */
4949
#include <nvector/nvector_serial.h> /* access to serial N_Vector */

0 commit comments

Comments
 (0)