summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2010-10-11 18:21:25 -0400
committerTavian Barnes <tavianator@gmail.com>2010-10-11 18:24:04 -0400
commit7a66711e95a97b3389a29b09aaead8cb18126e80 (patch)
tree6d51529e63568844661c12fecfb4910a81aa42eb /src
parent48d5a656c996e112fae70c3a209417b9d0982fbf (diff)
downloadvz-7a66711e95a97b3389a29b09aaead8cb18126e80.tar.xz
Add/fix copyright headers.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am14
-rw-r--r--src/vZ.hpp16
-rw-r--r--src/vZ/Adaptive.hpp2
-rw-r--r--src/vZ/BS23.hpp2
-rw-r--r--src/vZ/CK45.hpp2
-rw-r--r--src/vZ/DP45.hpp2
-rw-r--r--src/vZ/EquationSystem.hpp2
-rw-r--r--src/vZ/Euler.hpp2
-rw-r--r--src/vZ/HE12.hpp2
-rw-r--r--src/vZ/Heun.hpp2
-rw-r--r--src/vZ/Integrator.hpp2
-rw-r--r--src/vZ/Midpoint.hpp2
-rw-r--r--src/vZ/RK.hpp2
-rw-r--r--src/vZ/RK4.hpp2
-rw-r--r--src/vZ/RKF45.hpp2
-rw-r--r--src/vZ/Simple.hpp2
-rw-r--r--src/vZ/Traits.hpp2
-rw-r--r--src/vZ/Vector.hpp2
18 files changed, 31 insertions, 31 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 7db29dc..6bee8e1 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,16 +1,16 @@
###########################################################################
-## Copyright (C) 2009-2010 Tavian Barnes <tavianator@gmail.com> ##
+## Copyright (C) 2010 Tavian Barnes <tavianator@gmail.com> ##
## ##
-## This file is part of The Dimension Build Suite. ##
+## This file is part of The vZ Build Suite. ##
## ##
-## The Dimension Build Suite is free software; you can redistribute it ##
-## and/or modify it under the terms of the GNU General Public License as ##
+## The vZ Build Suite is free software; you can redistribute it and/or ##
+## modify it under the terms of the GNU General Public License as ##
## published by the Free Software Foundation; either version 3 of the ##
## License, or (at your option) any later version. ##
## ##
-## The Dimension Build Suite 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 ##
+## The vZ Build Suite 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 ##
## General Public License for more details. ##
## ##
## You should have received a copy of the GNU General Public License ##
diff --git a/src/vZ.hpp b/src/vZ.hpp
index 1b2ba29..03fae7a 100644
--- a/src/vZ.hpp
+++ b/src/vZ.hpp
@@ -1,16 +1,16 @@
/*************************************************************************
- * Copyright (C) 2009-2010 Tavian Barnes <tavianator@gmail.com> *
+ * Copyright (C) 2010 Tavian Barnes <tavianator@gmail.com> *
* *
- * This file is part of The Dimension Library. *
+ * This file is part of The vZ Library. *
* *
- * The Dimension Library 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 *
+ * The vZ Library 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. *
* *
- * The Dimension Library 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 *
+ * The vZ Library 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 *
diff --git a/src/vZ/Adaptive.hpp b/src/vZ/Adaptive.hpp
index 05fc439..f0cfed1 100644
--- a/src/vZ/Adaptive.hpp
+++ b/src/vZ/Adaptive.hpp
@@ -1,5 +1,5 @@
/*************************************************************************
- * Copyright (C) 2009-2010 Tavian Barnes <tavianator@gmail.com> *
+ * Copyright (C) 2010 Tavian Barnes <tavianator@gmail.com> *
* *
* This file is part of The vZ Library. *
* *
diff --git a/src/vZ/BS23.hpp b/src/vZ/BS23.hpp
index f81cad1..90cb9e6 100644
--- a/src/vZ/BS23.hpp
+++ b/src/vZ/BS23.hpp
@@ -1,5 +1,5 @@
/*************************************************************************
- * Copyright (C) 2009-2010 Tavian Barnes <tavianator@gmail.com> *
+ * Copyright (C) 2010 Tavian Barnes <tavianator@gmail.com> *
* *
* This file is part of The vZ Library. *
* *
diff --git a/src/vZ/CK45.hpp b/src/vZ/CK45.hpp
index 333e451..401b720 100644
--- a/src/vZ/CK45.hpp
+++ b/src/vZ/CK45.hpp
@@ -1,5 +1,5 @@
/*************************************************************************
- * Copyright (C) 2009-2010 Tavian Barnes <tavianator@gmail.com> *
+ * Copyright (C) 2010 Tavian Barnes <tavianator@gmail.com> *
* *
* This file is part of The vZ Library. *
* *
diff --git a/src/vZ/DP45.hpp b/src/vZ/DP45.hpp
index 343bd72..692a77e 100644
--- a/src/vZ/DP45.hpp
+++ b/src/vZ/DP45.hpp
@@ -1,5 +1,5 @@
/*************************************************************************
- * Copyright (C) 2009-2010 Tavian Barnes <tavianator@gmail.com> *
+ * Copyright (C) 2010 Tavian Barnes <tavianator@gmail.com> *
* *
* This file is part of The vZ Library. *
* *
diff --git a/src/vZ/EquationSystem.hpp b/src/vZ/EquationSystem.hpp
index 5a50f6d..9b80c30 100644
--- a/src/vZ/EquationSystem.hpp
+++ b/src/vZ/EquationSystem.hpp
@@ -1,5 +1,5 @@
/*************************************************************************
- * Copyright (C) 2009-2010 Tavian Barnes <tavianator@gmail.com> *
+ * Copyright (C) 2010 Tavian Barnes <tavianator@gmail.com> *
* *
* This file is part of The vZ Library. *
* *
diff --git a/src/vZ/Euler.hpp b/src/vZ/Euler.hpp
index ba53b98..226545e 100644
--- a/src/vZ/Euler.hpp
+++ b/src/vZ/Euler.hpp
@@ -1,5 +1,5 @@
/*************************************************************************
- * Copyright (C) 2009-2010 Tavian Barnes <tavianator@gmail.com> *
+ * Copyright (C) 2010 Tavian Barnes <tavianator@gmail.com> *
* *
* This file is part of The vZ Library. *
* *
diff --git a/src/vZ/HE12.hpp b/src/vZ/HE12.hpp
index 48d63ec..b004245 100644
--- a/src/vZ/HE12.hpp
+++ b/src/vZ/HE12.hpp
@@ -1,5 +1,5 @@
/*************************************************************************
- * Copyright (C) 2009-2010 Tavian Barnes <tavianator@gmail.com> *
+ * Copyright (C) 2010 Tavian Barnes <tavianator@gmail.com> *
* *
* This file is part of The vZ Library. *
* *
diff --git a/src/vZ/Heun.hpp b/src/vZ/Heun.hpp
index 7de2f40..d53d27e 100644
--- a/src/vZ/Heun.hpp
+++ b/src/vZ/Heun.hpp
@@ -1,5 +1,5 @@
/*************************************************************************
- * Copyright (C) 2009-2010 Tavian Barnes <tavianator@gmail.com> *
+ * Copyright (C) 2010 Tavian Barnes <tavianator@gmail.com> *
* *
* This file is part of The vZ Library. *
* *
diff --git a/src/vZ/Integrator.hpp b/src/vZ/Integrator.hpp
index cb9649a..902fe97 100644
--- a/src/vZ/Integrator.hpp
+++ b/src/vZ/Integrator.hpp
@@ -1,5 +1,5 @@
/*************************************************************************
- * Copyright (C) 2009-2010 Tavian Barnes <tavianator@gmail.com> *
+ * Copyright (C) 2010 Tavian Barnes <tavianator@gmail.com> *
* *
* This file is part of The vZ Library. *
* *
diff --git a/src/vZ/Midpoint.hpp b/src/vZ/Midpoint.hpp
index 071e589..6b2f6c3 100644
--- a/src/vZ/Midpoint.hpp
+++ b/src/vZ/Midpoint.hpp
@@ -1,5 +1,5 @@
/*************************************************************************
- * Copyright (C) 2009-2010 Tavian Barnes <tavianator@gmail.com> *
+ * Copyright (C) 2010 Tavian Barnes <tavianator@gmail.com> *
* *
* This file is part of The vZ Library. *
* *
diff --git a/src/vZ/RK.hpp b/src/vZ/RK.hpp
index a832779..97ab487 100644
--- a/src/vZ/RK.hpp
+++ b/src/vZ/RK.hpp
@@ -1,5 +1,5 @@
/*************************************************************************
- * Copyright (C) 2009-2010 Tavian Barnes <tavianator@gmail.com> *
+ * Copyright (C) 2010 Tavian Barnes <tavianator@gmail.com> *
* *
* This file is part of The vZ Library. *
* *
diff --git a/src/vZ/RK4.hpp b/src/vZ/RK4.hpp
index 0eb680e..ab59570 100644
--- a/src/vZ/RK4.hpp
+++ b/src/vZ/RK4.hpp
@@ -1,5 +1,5 @@
/*************************************************************************
- * Copyright (C) 2009-2010 Tavian Barnes <tavianator@gmail.com> *
+ * Copyright (C) 2010 Tavian Barnes <tavianator@gmail.com> *
* *
* This file is part of The vZ Library. *
* *
diff --git a/src/vZ/RKF45.hpp b/src/vZ/RKF45.hpp
index 5c558b7..b617e28 100644
--- a/src/vZ/RKF45.hpp
+++ b/src/vZ/RKF45.hpp
@@ -1,5 +1,5 @@
/*************************************************************************
- * Copyright (C) 2009-2010 Tavian Barnes <tavianator@gmail.com> *
+ * Copyright (C) 2010 Tavian Barnes <tavianator@gmail.com> *
* *
* This file is part of The vZ Library. *
* *
diff --git a/src/vZ/Simple.hpp b/src/vZ/Simple.hpp
index 5e4f7f8..211acd6 100644
--- a/src/vZ/Simple.hpp
+++ b/src/vZ/Simple.hpp
@@ -1,5 +1,5 @@
/*************************************************************************
- * Copyright (C) 2009-2010 Tavian Barnes <tavianator@gmail.com> *
+ * Copyright (C) 2010 Tavian Barnes <tavianator@gmail.com> *
* *
* This file is part of The vZ Library. *
* *
diff --git a/src/vZ/Traits.hpp b/src/vZ/Traits.hpp
index 76294ea..2c1496e 100644
--- a/src/vZ/Traits.hpp
+++ b/src/vZ/Traits.hpp
@@ -1,5 +1,5 @@
/*************************************************************************
- * Copyright (C) 2009-2010 Tavian Barnes <tavianator@gmail.com> *
+ * Copyright (C) 2010 Tavian Barnes <tavianator@gmail.com> *
* *
* This file is part of The vZ Library. *
* *
diff --git a/src/vZ/Vector.hpp b/src/vZ/Vector.hpp
index cf3bf0a..66b9a68 100644
--- a/src/vZ/Vector.hpp
+++ b/src/vZ/Vector.hpp
@@ -1,5 +1,5 @@
/*************************************************************************
- * Copyright (C) 2009-2010 Tavian Barnes <tavianator@gmail.com> *
+ * Copyright (C) 2010 Tavian Barnes <tavianator@gmail.com> *
* *
* This file is part of The vZ Library. *
* *