Olena-patches
Threads by month
- ----- 2025 -----
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
June 2009
- 9 participants
- 356 discussions
#205: Repair the TracNav bar
------------------------+---------------------------------------------------
Reporter: levill_r | Owner: Olena Team
Type: defect | Status: new
Priority: minor | Milestone:
Component: Trac | Version: 1.0
Keywords: system web |
------------------------+---------------------------------------------------
Since the update of Trac, many Wiki pages using the !TracNav plug-in won't
display the !TracNav bar (menu on the right of some pages), and show this
error instead :
{{{
Error: Failed to load processor TracNav
No macro or processor named 'TracNav' found
}}}
The curious thing is, the !TracNav bar is working ''sometimes''!!
To see this in action, try reloading a page several times (e.g.
CodingStyle): sometimes you'll see the bar, other times you'll get the
error.
I assume other Tracs ([https://trac.lrde.org/vaucanson/ Vaucanson's],
[https://trac.lrde.org/transformers/ Transfomers'], etc.) face the same
problem; we should discuss this issue with their maintainers. Therefore I
(Roland) am cc'ing this ticket to the `projects` mailing list as well.
--
Ticket URL: <https://trac.lrde.org/olena/ticket/205>
Olena <http://olena.lrde.epita.fr>
Olena, a generic and efficient C++ image processing library.
1
0
#204: Document the administration of BuildBot
----------------------+-----------------------------------------------------
Reporter: levill_r | Owner: Olena Team
Type: task | Status: new
Priority: major | Milestone:
Component: Trac | Version: 1.0
Keywords: |
----------------------+-----------------------------------------------------
AFAIK, there is not specific documentation on the topic at LRDE.
* How to set up a new build: host/architecture + tool set (compiler,
etc.)?
* How to force a build?
* How to stop a build?
* etc.
We can write this either in Trac's Wiki or in a private page of TWiki if
we do not want to make this public.
--
Ticket URL: <https://trac.lrde.org/olena/ticket/204>
Olena <http://olena.lrde.epita.fr>
Olena, a generic and efficient C++ image processing library.
1
0
URL: https://svn.lrde.epita.fr/svn/oln/trunk
ChangeLog:
2009-06-04 Fabien Freling <fabien.freling(a)lrde.epita.fr>
Exclude some files during checking.
* build-aux/check_source_has_test.sh: Exclude some files.
---
check_source_has_test.sh | 22 +++++++++++++++-------
1 file changed, 15 insertions(+), 7 deletions(-)
Index: trunk/build-aux/check_source_has_test.sh
===================================================================
--- trunk/build-aux/check_source_has_test.sh (revision 3991)
+++ trunk/build-aux/check_source_has_test.sh (revision 3992)
@@ -6,21 +6,30 @@
check_directory ()
{
echo "Current directories: $1 $2"
+
for file in `ls $1`; do
- test_file=${file%.hh}.cc
if [ -f ${1}/$file ]; then
+ ext=${file##*.}
+ base=${file%.*}
+
+ if [ "$ext" = "hh" -a \
+ "${base##*.}" != "spe" ]; then
+ test_file=${file%.hh}.cc
all_tests=$(($all_tests + 1))
+
if [ -f ${2}/$test_file ]; then
- echo "\t\e[0;32mOK\e[m $file <-> $test_file"
+ echo "\t\e[0;32mOK\e[m $file <-> $test_file" > /dev/null
else
-# FIXME: Manage exceptions.
if [ "$file" != "all.hh" -a \
"$file" != "essential.hh" ]; then
- echo "\t\e[0;31mFAIL\e[m Test \"$test_file\" does not exist."
+ echo "\tFAIL Test \"$test_file\" does not exist."
failed_tests=$(($failed_tests + 1))
fi
fi
+
+ fi
+
fi
if [ -d ${1}/$file ]; then
@@ -28,9 +37,8 @@
echo ""
check_directory ${1}/$file ${2}/$file
else
-# FIXME: Manage exceptions.
if [ "$file" != "internal" ]; then
- echo "\e[0;31mFAIL\e[m Test directory \"${2}/$file\" does not exist."
+ echo "FAIL Test directory \"${2}/$file\" does not exist."
fi
fi
fi
@@ -58,5 +66,5 @@
fi
echo "\n====="
-echo "Uncorrect tests: $failed_tests"
+echo "Missing tests: $failed_tests"
1
0
04 Jun '09
URL: https://svn.lrde.epita.fr/svn/oln/trunk/milena
ChangeLog:
2009-06-04 Edwin Carlinet <carlinet(a)lrde.epita.fr>
Rename predorder iterator by depth1st iterator.
* mln/morpho/tree/data.hh,
* mln/morpho/tree/propagate_node.hh,
* sandbox/edwin/tests/sharpness_attribute.cc:
Rename predorder iterator by depth1st iterator.
---
headers.mk | 1
mln/morpho/tree/data.hh | 42 +++++++++++++++--------------
mln/morpho/tree/propagate_node.hh | 2 -
sandbox/edwin/tests/sharpness_attribute.cc | 2 -
tests/unit_test/unit-tests.mk | 18 ++++--------
5 files changed, 32 insertions(+), 33 deletions(-)
Index: trunk/milena/headers.mk
===================================================================
--- trunk/milena/headers.mk (revision 3986)
+++ trunk/milena/headers.mk (revision 3987)
@@ -1248,6 +1248,7 @@
mln/value/stack.hh \
mln/value/super_value.hh \
mln/value/viter.hh \
+mln/version.hh \
mln/win/all.hh \
mln/win/backdiag2d.hh \
mln/win/ball.hh \
Index: trunk/milena/tests/unit_test/unit-tests.mk
===================================================================
--- trunk/milena/tests/unit_test/unit-tests.mk (revision 3986)
+++ trunk/milena/tests/unit_test/unit-tests.mk (revision 3987)
@@ -284,6 +284,7 @@
mln_core_internal_coord_impl \
mln_core_internal_data \
mln_core_internal_exact \
+mln_core_internal_exact_gcc_2_95 \
mln_core_internal_fixme \
mln_core_internal_force_exact \
mln_core_internal_geom_bbox \
@@ -630,6 +631,7 @@
mln_io_cloud_all \
mln_io_cloud_load \
mln_io_cloud_save \
+mln_io_dicom_all \
mln_io_dicom_load \
mln_io_dump_all \
mln_io_dump_load \
@@ -667,7 +669,6 @@
mln_io_ppm_save \
mln_io_tiff_all \
mln_io_tiff_load \
-mln_io_tiff_save \
mln_io_txt_all \
mln_io_txt_save \
mln_labeling_all \
@@ -1109,10 +1110,6 @@
mln_util_greater_psite \
mln_util_ignore \
mln_util_index \
-mln_util_internal_boost_graph \
-mln_util_internal_boost_graph_access \
-mln_util_internal_boost_graph_property \
-mln_util_internal_boost_graph_structure \
mln_util_internal_edge_impl \
mln_util_internal_graph_base \
mln_util_internal_graph_iter \
@@ -1217,6 +1214,7 @@
mln_value_stack \
mln_value_super_value \
mln_value_viter \
+mln_version \
mln_win_all \
mln_win_backdiag2d \
mln_win_ball \
@@ -1241,7 +1239,6 @@
mln_world_all \
mln_world_binary_2d_all \
mln_world_binary_2d_enlarge \
-mln_world_binary_2d_enlarge_hq2x \
mln_world_binary_2d_projected_histo \
mln_world_binary_2d_subsample \
mln_world_inter_pixel_all \
@@ -1543,6 +1540,7 @@
mln_core_internal_coord_impl_SOURCES = mln_core_internal_coord_impl.cc
mln_core_internal_data_SOURCES = mln_core_internal_data.cc
mln_core_internal_exact_SOURCES = mln_core_internal_exact.cc
+mln_core_internal_exact_gcc_2_95_SOURCES = mln_core_internal_exact_gcc_2_95.cc
mln_core_internal_fixme_SOURCES = mln_core_internal_fixme.cc
mln_core_internal_force_exact_SOURCES = mln_core_internal_force_exact.cc
mln_core_internal_geom_bbox_SOURCES = mln_core_internal_geom_bbox.cc
@@ -1889,6 +1887,7 @@
mln_io_cloud_all_SOURCES = mln_io_cloud_all.cc
mln_io_cloud_load_SOURCES = mln_io_cloud_load.cc
mln_io_cloud_save_SOURCES = mln_io_cloud_save.cc
+mln_io_dicom_all_SOURCES = mln_io_dicom_all.cc
mln_io_dicom_load_SOURCES = mln_io_dicom_load.cc
mln_io_dump_all_SOURCES = mln_io_dump_all.cc
mln_io_dump_load_SOURCES = mln_io_dump_load.cc
@@ -1926,7 +1925,6 @@
mln_io_ppm_save_SOURCES = mln_io_ppm_save.cc
mln_io_tiff_all_SOURCES = mln_io_tiff_all.cc
mln_io_tiff_load_SOURCES = mln_io_tiff_load.cc
-mln_io_tiff_save_SOURCES = mln_io_tiff_save.cc
mln_io_txt_all_SOURCES = mln_io_txt_all.cc
mln_io_txt_save_SOURCES = mln_io_txt_save.cc
mln_labeling_all_SOURCES = mln_labeling_all.cc
@@ -2368,10 +2366,6 @@
mln_util_greater_psite_SOURCES = mln_util_greater_psite.cc
mln_util_ignore_SOURCES = mln_util_ignore.cc
mln_util_index_SOURCES = mln_util_index.cc
-mln_util_internal_boost_graph_SOURCES = mln_util_internal_boost_graph.cc
-mln_util_internal_boost_graph_access_SOURCES = mln_util_internal_boost_graph_access.cc
-mln_util_internal_boost_graph_property_SOURCES = mln_util_internal_boost_graph_property.cc
-mln_util_internal_boost_graph_structure_SOURCES = mln_util_internal_boost_graph_structure.cc
mln_util_internal_edge_impl_SOURCES = mln_util_internal_edge_impl.cc
mln_util_internal_graph_base_SOURCES = mln_util_internal_graph_base.cc
mln_util_internal_graph_iter_SOURCES = mln_util_internal_graph_iter.cc
@@ -2476,6 +2470,7 @@
mln_value_stack_SOURCES = mln_value_stack.cc
mln_value_super_value_SOURCES = mln_value_super_value.cc
mln_value_viter_SOURCES = mln_value_viter.cc
+mln_version_SOURCES = mln_version.cc
mln_win_all_SOURCES = mln_win_all.cc
mln_win_backdiag2d_SOURCES = mln_win_backdiag2d.cc
mln_win_ball_SOURCES = mln_win_ball.cc
@@ -2500,7 +2495,6 @@
mln_world_all_SOURCES = mln_world_all.cc
mln_world_binary_2d_all_SOURCES = mln_world_binary_2d_all.cc
mln_world_binary_2d_enlarge_SOURCES = mln_world_binary_2d_enlarge.cc
-mln_world_binary_2d_enlarge_hq2x_SOURCES = mln_world_binary_2d_enlarge_hq2x.cc
mln_world_binary_2d_projected_histo_SOURCES = mln_world_binary_2d_projected_histo.cc
mln_world_binary_2d_subsample_SOURCES = mln_world_binary_2d_subsample.cc
mln_world_inter_pixel_all_SOURCES = mln_world_inter_pixel_all.cc
Index: trunk/milena/mln/morpho/tree/propagate_node.hh
===================================================================
--- trunk/milena/mln/morpho/tree/propagate_node.hh (revision 3986)
+++ trunk/milena/mln/morpho/tree/propagate_node.hh (revision 3987)
@@ -131,7 +131,7 @@
n = t.parent(n);
mln_assertion(t.is_a_node(n));
- typename T::preorder_piter pp(t, n);
+ typename T::depth1st_piter pp(t, n);
pp.start(); // We don't set n to v.
Index: trunk/milena/mln/morpho/tree/data.hh
===================================================================
--- trunk/milena/mln/morpho/tree/data.hh (revision 3986)
+++ trunk/milena/mln/morpho/tree/data.hh (revision 3987)
@@ -49,7 +49,7 @@
# define mln_site_piter(T) typename T::site_piter
# define mln_node_piter(T) typename T::node_piter
# define mln_leaf_piter(T) typename T::leaf_piter
-# define mln_preorder_piter(T) typename T::preorder_piter
+# define mln_depth1st_piter(T) typename T::depth1st_piter
# define mln_up_site_piter_(T) T::up_site_piter
# define mln_dn_site_piter_(T) T::dn_site_piter
@@ -60,7 +60,7 @@
# define mln_site_piter_(T) T::site_piter
# define mln_node_piter_(T) T::node_piter
# define mln_leaf_piter_(T) T::leaf_piter
-# define mln_preorder_piter_(T) T::preorder_piter
+# define mln_depth1st_piter_(T) T::depth1st_piter
namespace mln
@@ -92,8 +92,8 @@
/// Iterate on tree's leaves in the same way of dn_node_piter.
template <typename T> struct dn_leaf_piter;
- /// Preorder tree traversal iterator.
- template <typename T> struct preorder_piter;
+ /// Depth1st tree traversal iterator.
+ template <typename T> struct depth1st_piter;
template <typename I, typename S>
@@ -132,7 +132,7 @@
typedef mln::morpho::tree::dn_leaf_piter<self_> dn_leaf_piter;
typedef up_leaf_piter leaf_piter;
- typedef mln::morpho::tree::preorder_piter<self_> preorder_piter;
+ typedef mln::morpho::tree::depth1st_piter<self_> depth1st_piter;
/// Constructor.
@@ -337,22 +337,22 @@
};
template <typename T>
- class preorder_piter
- : public mln::internal::site_set_iterator_base< T, preorder_piter<T> >
+ class depth1st_piter
+ : public mln::internal::site_set_iterator_base< T, depth1st_piter<T> >
{
- typedef preorder_piter<T> self_;
+ typedef depth1st_piter<T> self_;
typedef mln::internal::site_set_iterator_base<T, self_> super_;
public:
/// Constructor with no argument.
- preorder_piter();
+ depth1st_piter();
/// Constructor.
- preorder_piter(const T& t);
+ depth1st_piter(const T& t);
- preorder_piter(const T& t,
+ depth1st_piter(const T& t,
const mln_psite(T::function)& p);
/// Test if the iterator is valid.
@@ -370,6 +370,10 @@
/// Skip current point children. Next call to next() goes to the brother point.
void skip_children();
+ unsigned get_depth() {
+ return stack_.size() - 1;
+ }
+
protected:
using super_::p_;
using super_::s_;
@@ -560,14 +564,14 @@
template <typename T>
inline
- preorder_piter<T>::preorder_piter()
+ depth1st_piter<T>::depth1st_piter()
: root_ (0)
{
}
template <typename T>
inline
- preorder_piter<T>::preorder_piter(const T& t)
+ depth1st_piter<T>::depth1st_piter(const T& t)
: root_ (0)
{
this->change_target(t);
@@ -575,7 +579,7 @@
template <typename T>
inline
- preorder_piter<T>::preorder_piter(const T& t,
+ depth1st_piter<T>::depth1st_piter(const T& t,
const mln_psite(T::function)& p)
: root_ (&p)
{
@@ -586,7 +590,7 @@
template <typename T>
inline
bool
- preorder_piter<T>::is_valid_() const
+ depth1st_piter<T>::is_valid_() const
{
return !stack_.empty();
}
@@ -594,7 +598,7 @@
template <typename T>
inline
void
- preorder_piter<T>::invalidate_()
+ depth1st_piter<T>::invalidate_()
{
stack_.clear();
}
@@ -602,7 +606,7 @@
template <typename T>
inline
void
- preorder_piter<T>::start_()
+ depth1st_piter<T>::start_()
{
this->invalidate();
stack_.push_back(mln_psite(T::function)()); // needed for last element.
@@ -627,7 +631,7 @@
template <typename T>
inline
void
- preorder_piter<T>::next_()
+ depth1st_piter<T>::next_()
{
p_ = stack_.back();
stack_.pop_back();
@@ -641,7 +645,7 @@
template <typename T>
inline
void
- preorder_piter<T>::skip_children()
+ depth1st_piter<T>::skip_children()
{
while (stack_.size() != 1 && s_->parent(stack_.back()) == p_)
stack_.pop_back();
Index: trunk/milena/sandbox/edwin/tests/sharpness_attribute.cc
===================================================================
--- trunk/milena/sandbox/edwin/tests/sharpness_attribute.cc (revision 3986)
+++ trunk/milena/sandbox/edwin/tests/sharpness_attribute.cc (revision 3987)
@@ -105,7 +105,7 @@
std::cout << "| " << std::setw(w) << "delta(n)";
std::cout << '|' << std::endl;
- mln_preorder_piter_(T) n(tree);
+ mln_depth1st_piter_(T) n(tree);
std::stack<mln_psite_(T)> s;
for_all(n)
{
2
1
---
ChangeLog | 4 ++++
Makefile.am | 4 ++++
2 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 46faf65..436b93c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-06-04 Guillaume Lazzara <lazzara(a)lrde.epita.fr>
+
+ * Makefile.am: add pretty_check rule.
+
2009-06-03 Roland Levillain <roland(a)lrde.epita.fr>
Update the shipped GNU General Public License (GPL) text.
diff --git a/Makefile.am b/Makefile.am
index 6e5120f..4df773e 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -12,3 +12,7 @@ endif ENABLE_SWILENA
.PHONY: doc
doc:
cd milena && $(MAKE) $(AM_MAKEFLAGS) $@
+
+pretty_check:
+ $(MAKE) -C milena/tests pretty_check
+
--
1.5.6.5
2
1
04 Jun '09
URL: https://svn.lrde.epita.fr/svn/oln/trunk
ChangeLog:
2009-06-04 Fabien Freling <fabien.freling(a)lrde.epita.fr>
Add scrip shell for checking that each source has a test file.
* build-aux/check_source_has_test.sh: Check tests according to sources.
* build-aux/check_test_hierarchy.sh: Small update.
---
check_source_has_test.sh | 62 +++++++++++++++++++++++++++++++++++++++++++++++
check_test_hierarchy.sh | 4 +--
2 files changed, 64 insertions(+), 2 deletions(-)
Index: trunk/build-aux/check_source_has_test.sh
===================================================================
--- trunk/build-aux/check_source_has_test.sh (revision 0)
+++ trunk/build-aux/check_source_has_test.sh (revision 3991)
@@ -0,0 +1,62 @@
+#! /bin/sh
+
+failed_tests=0
+all_tests=0
+
+check_directory ()
+{
+ echo "Current directories: $1 $2"
+ for file in `ls $1`; do
+
+ test_file=${file%.hh}.cc
+ if [ -f ${1}/$file ]; then
+ all_tests=$(($all_tests + 1))
+ if [ -f ${2}/$test_file ]; then
+ echo "\t\e[0;32mOK\e[m $file <-> $test_file"
+ else
+# FIXME: Manage exceptions.
+ if [ "$file" != "all.hh" -a \
+ "$file" != "essential.hh" ]; then
+ echo "\t\e[0;31mFAIL\e[m Test \"$test_file\" does not exist."
+ failed_tests=$(($failed_tests + 1))
+ fi
+ fi
+ fi
+
+ if [ -d ${1}/$file ]; then
+ if [ -d ${2}/$file ]; then
+ echo ""
+ check_directory ${1}/$file ${2}/$file
+ else
+# FIXME: Manage exceptions.
+ if [ "$file" != "internal" ]; then
+ echo "\e[0;31mFAIL\e[m Test directory \"${2}/$file\" does not exist."
+ fi
+ fi
+ fi
+
+ done
+}
+
+if [ $# -ne 2 ]; then
+ echo "Usage: ./check_test_hierarchy mln/ tests/"
+ exit 1
+fi
+
+echo "Source directory: $1"
+echo "Test directory: $2"
+echo "---"
+
+if [ -d ${1} ]; then
+ if [ -d ${2} ]; then
+ check_directory ${1} ${2}
+ else
+ echo "\e[0;31mFAIL\e[m Test directory $2 does not exist."
+ fi
+else
+ echo "\e[0;31mFAIL\e[m Source directory $1 does not exist."
+fi
+
+echo "\n====="
+echo "Uncorrect tests: $failed_tests"
+
Property changes on: trunk/build-aux/check_source_has_test.sh
___________________________________________________________________
Name: svn:executable
+ *
Index: trunk/build-aux/check_test_hierarchy.sh
===================================================================
--- trunk/build-aux/check_test_hierarchy.sh (revision 3990)
+++ trunk/build-aux/check_test_hierarchy.sh (revision 3991)
@@ -12,7 +12,7 @@
if [ -f ${1}/$file ]; then
all_tests=$(($all_tests + 1))
if [ -f ${2}/$source_file ]; then
- echo "\t\e[0;32mOK\e[m $file <-> $source_file"
+ echo "\t\e[0;32mOK\e[m $file <-> $source_file" > /dev/null
else
# FIXME: Manage exceptions.
if [ "$file" != "Makefile.am" ]; then
@@ -28,7 +28,7 @@
check_directory ${1}/$file ${2}/$file
else
# FIXME: Manage exceptions.
- echo "\e[0;31mFAIL\e[m ${1}/$file source directory does not exist."
+ echo "\e[0;31mFAIL\e[m ${2}/$file source directory does not exist."
fi
fi
1
0
https://svn.lrde.epita.fr/svn/oln/trunk/milena
Index: ChangeLog
from Thierry Geraud <thierry.geraud(a)lrde.epita.fr>
Fix missing trait in win diff.
* mln/win/diff.hh (trait): Fix missing.
(operator-): Move the body into...
(diff): ...these new routines.
(operator-): Call diff.
diff.hh | 90 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------
1 file changed, 79 insertions(+), 11 deletions(-)
Index: mln/win/diff.hh
--- mln/win/diff.hh (revision 3989)
+++ mln/win/diff.hh (working copy)
@@ -1,4 +1,5 @@
-// Copyright (C) 2008 EPITA Research and Development Laboratory
+// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
+// (LRDE)
//
// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
@@ -28,11 +29,11 @@
#ifndef MLN_WIN_DIFF_HH
# define MLN_WIN_DIFF_HH
-/*! \file mln/win/diff.hh
- *
- * \brief Set difference between a couple of windows or neighborhoods.
- */
+/// \file mln/win/diff.hh
+///
+/// \brief Set difference between a couple of windows or neighborhoods.
+# include <mln/trait/op/minus.hh>
# include <mln/core/window.hh>
# include <mln/core/neighb.hh>
@@ -41,24 +42,72 @@
namespace mln
{
- /// Set difference between a couple of windows \p win1 and \p win2.
+ namespace win
+ {
+
+ /// \brief Set difference between a couple of windows \p win1 and \p
+ /// win2.
+ //
template <typename W1, typename W2>
mln_regular(W1)
- operator-(const Window<W1>& win1, const Window<W2>& win2);
+ diff(const Window<W1>& win1, const Window<W2>& win2);
+
+
+ /// \brief Set difference between a couple of neighborhoods \p nbh1
+ /// and \p nbh2.
+ //
+ template <typename N1, typename N2>
+ neighb<mln_deduce(N1, window, regular)>
+ diff(const Neighborhood<N1>& nbh1, const Neighborhood<N2>& nbh2);
+ } // end of namespace mln::win
+
+
+ /// \brief Set difference between a couple of windows \p win1 and \p
+ /// win2. It just calls mln::win::diff.
+ ///
+ //
+ template <typename W1, typename W2>
+ mln_regular(W1)
+ operator-(const Window<W1>& win1, const Window<W2>& win2);
- /// Set difference between a couple of neighborhoods \p nbh1 and \p nbh2.
+ /// \brief Set difference between a couple of neighborhoods \p nbh1
+ /// and \p nbh2. It just calls mln::win::diff.
+ //
template <typename N1, typename N2>
neighb<mln_deduce(N1, window, regular)>
operator-(const Neighborhood<N1>& nbh1, const Neighborhood<N2>& nbh2);
+ namespace trait
+ {
+
+ template <typename W1, typename W2>
+ struct set_binary_< op::minus, mln::Window, W1, mln::Window, W2 >
+ {
+ typedef mln_regular(W1) ret;
+ };
+
+
+ template <typename N1, typename N2>
+ struct set_binary_< op::minus, mln::Neighborhood, N1, mln::Neighborhood, N2 >
+ {
+ typedef mln::neighb<mln_deduce(N1, window, regular)> ret;
+ };
+
+ } // end of namespace mln::trait
+
+
+
# ifndef MLN_INCLUDE_ONLY
+ namespace win
+ {
+
template <typename W1, typename W2>
inline
mln_regular(W1)
- operator-(const Window<W1>& win1_, const Window<W2>& win2_)
+ diff(const Window<W1>& win1_, const Window<W2>& win2_)
{
trace::entering("win::diff");
@@ -81,10 +130,9 @@
return tmp;
}
-
template <typename N1, typename N2>
neighb<mln_deduce(N1, window, regular)>
- operator-(const Neighborhood<N1>& nbh1, const Neighborhood<N2>& nbh2)
+ diff(const Neighborhood<N1>& nbh1, const Neighborhood<N2>& nbh2)
{
typedef mln_deduce(N1, window, regular) W1;
W1 win = diff(exact(nbh1).win(), exact(nbh2).win());
@@ -92,6 +140,26 @@
return tmp;
}
+ } // end of namespace mln::win
+
+
+ // Operators.
+
+ template <typename W1, typename W2>
+ inline
+ mln_regular(W1)
+ operator-(const Window<W1>& win1, const Window<W2>& win2)
+ {
+ return win::diff(win1, win2);
+ }
+
+ template <typename N1, typename N2>
+ neighb<mln_deduce(N1, window, regular)>
+ operator-(const Neighborhood<N1>& nbh1, const Neighborhood<N2>& nbh2)
+ {
+ return win::diff(nbh1, nbh2);
+ }
+
# endif // ! MLN_INCLUDE_ONLY
} // end of namespace mln
1
0
URL: https://svn.lrde.epita.fr/svn/oln/trunk/milena
ChangeLog:
2009-06-04 Fabien Freling <fabien.freling(a)lrde.epita.fr>
Move 3D pnm image loading routines.
* mln/io/pnms/all.hh: Include load.hh
* mln/io/pnms/load.hh: Implement generic pnm 3D loading
routine.
* mln/io/pbm/load.hh: Move 3D loading routine...
* mln/io/pbms/load.hh: ...here.
* mln/io/pbms/all.hh: Include load.hh
* mln/io/pgm/load.hh: Move 3D loading routine...
* mln/io/pgms/load.hh: ...here.
* mln/io/pgms/all.hh: Include load.hh
* mln/io/ppm/load.hh: Move 3D loading routine...
* mln/io/ppms/load.hh: ...here.
* mln/io/ppms/all.hh: Include load.hh
---
pbm/load.hh | 30 -----------------
pbms/all.hh | 56 +++++++++++++++++++++++++++++++
pbms/load.hh | 88 +++++++++++++++++++++++++++++++++++++++++++++++++
pgm/load.hh | 37 --------------------
pgms/all.hh | 48 +++++++++++++++++++++++++++
pgms/load.hh | 91 +++++++++++++++++++++++++++++++++++++++++++++++++++
pnms/all.hh | 48 +++++++++++++++++++++++++++
pnms/load.hh | 104 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
ppm/load.hh | 31 -----------------
ppms/all.hh | 48 +++++++++++++++++++++++++++
ppms/load.hh | 91 +++++++++++++++++++++++++++++++++++++++++++++++++++
11 files changed, 574 insertions(+), 98 deletions(-)
Index: trunk/milena/mln/io/ppms/all.hh
===================================================================
--- trunk/milena/mln/io/ppms/all.hh (revision 0)
+++ trunk/milena/mln/io/ppms/all.hh (revision 3989)
@@ -0,0 +1,48 @@
+// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
+//
+// This file is part of the Milena Library. This library is free
+// software; you can redistribute it and/or modify it under the terms
+// of the GNU General Public License version 2 as published by the
+// Free Software Foundation.
+//
+// This 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
+// General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this library; see the file COPYING. If not, write to
+// the Free Software Foundation, 51 Franklin Street, Fifth Floor,
+// Boston, MA 02111-1307, USA.
+//
+// As a special exception, you may use this file as part of a free
+// software library without restriction. Specifically, if other files
+// instantiate templates or use macros or inline functions from this
+// file, or you compile this file and link it with other files to
+// produce an executable, this file does not by itself cause the
+// resulting executable to be covered by the GNU General Public
+// License. This exception does not however invalidate any other
+// reasons why the executable file might be covered by the GNU General
+// Public License.
+
+#ifndef MLN_IO_PPMS_ALL_HH
+# define MLN_IO_PPMS_ALL_HH
+
+/// \file mln/io/ppms/all.hh
+/// \brief Inclusion of all PPMS I/O routines.
+
+
+namespace mln
+{
+
+ namespace io
+ {
+ /// Namespace of ppms input/output handling.
+ namespace ppms {}
+ }
+
+}
+
+# include <mln/io/ppms/load.hh>
+
+#endif // ! MLN_IO_PPMS_ALL_HH
Index: trunk/milena/mln/io/ppms/load.hh
===================================================================
--- trunk/milena/mln/io/ppms/load.hh (revision 0)
+++ trunk/milena/mln/io/ppms/load.hh (revision 3989)
@@ -0,0 +1,91 @@
+// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+// EPITA Research and Development Laboratory (LRDE)
+//
+// This file is part of the Milena Library. This library is free
+// software; you can redistribute it and/or modify it under the terms
+// of the GNU General Public License version 2 as published by the
+// Free Software Foundation.
+//
+// This 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
+// General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this library; see the file COPYING. If not, write to
+// the Free Software Foundation, 51 Franklin Street, Fifth Floor,
+// Boston, MA 02111-1307, USA.
+//
+// As a special exception, you may use this file as part of a free
+// software library without restriction. Specifically, if other files
+// instantiate templates or use macros or inline functions from this
+// file, or you compile this file and link it with other files to
+// produce an executable, this file does not by itself cause the
+// resulting executable to be covered by the GNU General Public
+// License. This exception does not however invalidate any other
+// reasons why the executable file might be covered by the GNU General
+// Public License.
+
+#ifndef MLN_IO_PPMS_LOAD_HH
+# define MLN_IO_PPMS_LOAD_HH
+
+/// \file mln/io/ppms/load.hh
+///
+/// Define a function which loads multiple ppm images into
+/// a 3D image.
+
+# include <iostream>
+# include <fstream>
+# include <string>
+
+# include <mln/core/image/image2d.hh>
+# include <mln/core/image/image3d.hh>
+# include <mln/value/rgb8.hh>
+# include <mln/io/pnms/load.hh>
+# include <mln/make/image3d.hh>
+
+namespace mln
+{
+
+ namespace io
+ {
+
+ namespace ppms
+ {
+
+ /// Load ppm images as slices of a 3D Milena image.
+ ///
+ /// \param[out] ima A reference to the 3D image which will receive
+ /// data.
+ /// \param[in] filenames The list of 2D images to load..
+ template <typename V>
+ void load(image3d<V>& ima,
+ const util::array<std::string>& filenames);
+
+# ifndef MLN_INCLUDE_ONLY
+
+
+ template <typename V>
+ inline
+ void load(image3d<V>& ima,
+ const util::array<std::string>& filenames)
+ {
+ trace::entering("mln::io::ppms::load");
+
+ io::pnms::load<image2d<V> >(PPM, ima, filenames);
+
+ trace::exiting("mln::io::ppms::load");
+ }
+
+
+# endif // ! MLN_INCLUDE_ONLY
+
+ } // end of namespace mln::io::ppms
+
+ } // end of namespace mln::io
+
+} // end of namespace mln
+
+
+#endif // ! MLN_IO_PPMS_LOAD_HH
+
Index: trunk/milena/mln/io/pgm/load.hh
===================================================================
--- trunk/milena/mln/io/pgm/load.hh (revision 3988)
+++ trunk/milena/mln/io/pgm/load.hh (revision 3989)
@@ -32,9 +32,6 @@
/// \file mln/io/pgm/load.hh
///
/// \brief Define a function which loads an image of kind pgm with
-///
-/// \todo Fabien: Move image3d loading elsewhere! for instance in
-/// io/pgms/load (note the 's')...
# include <iostream>
# include <fstream>
@@ -44,7 +41,6 @@
# include <mln/core/image/image3d.hh>
# include <mln/value/int_u8.hh>
# include <mln/io/pnm/load.hh>
-# include <mln/make/image3d.hh>
namespace mln
@@ -77,17 +73,6 @@
image2d<V> load(const std::string& filename);
- /// Load ppm images as slices of a 3D Milena image.
- ///
- /// \param[out] ima A reference to the 3D image which will receive
- /// data.
- /// \param[in] filenames The list of 2D images to load..
- ///
- template <typename V>
- void load(image3d<V>& ima,
- const util::array<std::string>& filenames);
-
-
# ifndef MLN_INCLUDE_ONLY
template <typename V>
@@ -111,28 +96,6 @@
}
- template <typename V>
- inline
- void load(image3d<V>& ima,
- const util::array<std::string>& filenames)
- {
- trace::entering("mln::io::pgm::load");
- mln_precondition(!filenames.is_empty());
-
- util::array<image2d<V> > slices;
-
- for (unsigned i = 0; i < filenames.nelements(); ++i)
- {
- image2d<V> tmp;
- io::pnm::load<image2d<V> >(PGM, tmp, filenames[i]);
- slices.append(tmp);
- }
-
- ima = make::image3d(slices);
-
- trace::exiting("mln::io::pgm::load");
- }
-
# endif // ! MLN_INCLUDE_ONLY
} // end of namespace mln::io::pgm
Index: trunk/milena/mln/io/ppm/load.hh
===================================================================
--- trunk/milena/mln/io/ppm/load.hh (revision 3988)
+++ trunk/milena/mln/io/ppm/load.hh (revision 3989)
@@ -44,7 +44,6 @@
# include <mln/io/pnm/load.hh>
-# include <mln/make/image3d.hh>
namespace mln
{
@@ -76,15 +75,6 @@
image2d<V> load(const std::string& filename);
- /// Load ppm images as slices of a 3D Milena image.
- ///
- /// \param[out] ima A reference to the 3D image which will receive
- /// data.
- /// \param[in] filenames The list of 2D images to load..
- template <typename V>
- void load(image3d<V>& ima,
- const util::array<std::string>& filenames);
-
# ifndef MLN_INCLUDE_ONLY
template <typename V>
@@ -107,27 +97,6 @@
trace::exiting("mln::io::ppm::load");
}
- template <typename V>
- inline
- void load(image3d<V>& ima,
- const util::array<std::string>& filenames)
- {
- trace::entering("mln::io::ppm::load");
- mln_precondition(!filenames.is_empty());
-
- util::array<image2d<V> > slices;
-
- for (unsigned i = 0; i < filenames.nelements(); ++i)
- {
- image2d<V> tmp;
- io::pnm::load<image2d<V> >(PPM, tmp, filenames[i]);
- slices.append(tmp);
- }
-
- ima = make::image3d(slices);
-
- trace::exiting("mln::io::ppm::load");
- }
# endif // ! MLN_INCLUDE_ONLY
Index: trunk/milena/mln/io/pbms/all.hh
===================================================================
--- trunk/milena/mln/io/pbms/all.hh (revision 0)
+++ trunk/milena/mln/io/pbms/all.hh (revision 3989)
@@ -0,0 +1,56 @@
+// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
+// Laboratory (LRDE)
+//
+// This file is part of the Milena Library. This library is free
+// software; you can redistribute it and/or modify it under the terms
+// of the GNU General Public License version 2 as published by the
+// Free Software Foundation.
+//
+// This 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
+// General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this library; see the file COPYING. If not, write to
+// the Free Software Foundation, 51 Franklin Street, Fifth Floor,
+// Boston, MA 02111-1307, USA.
+//
+// As a special exception, you may use this file as part of a free
+// software library without restriction. Specifically, if other files
+// instantiate templates or use macros or inline functions from this
+// file, or you compile this file and link it with other files to
+// produce an executable, this file does not by itself cause the
+// resulting executable to be covered by the GNU General Public
+// License. This exception does not however invalidate any other
+// reasons why the executable file might be covered by the GNU General
+// Public License.
+
+#ifndef MLN_IO_PBMS_ALL_HH
+# define MLN_IO_PBMS_ALL_HH
+
+/// \file mln/io/pbms/all.hh
+/// \brief Inclusion of all PBMS I/O routines.
+
+
+namespace mln
+{
+
+ namespace io
+ {
+ /// Namespace of pbms input/output handling.
+ namespace pbms
+ {
+ /// Namespace of pbms implementation details.
+ namespace impl {}
+
+ /// Internal namespace of pbms namespace.
+ namespace internal {}
+ }
+ }
+
+}
+
+# include <mln/io/pbms/load.hh>
+
+#endif // ! MLN_IO_PBMS_ALL_HH
Index: trunk/milena/mln/io/pbms/load.hh
===================================================================
--- trunk/milena/mln/io/pbms/load.hh (revision 0)
+++ trunk/milena/mln/io/pbms/load.hh (revision 3989)
@@ -0,0 +1,88 @@
+// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+// EPITA Research and Development Laboratory (LRDE)
+//
+// This file is part of the Milena Library. This library is free
+// software; you can redistribute it and/or modify it under the terms
+// of the GNU General Public License version 2 as published by the
+// Free Software Foundation.
+//
+// This 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
+// General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this library; see the file COPYING. If not, write to
+// the Free Software Foundation, 51 Franklin Street, Fifth Floor,
+// Boston, MA 02111-1307, USA.
+//
+// As a special exception, you may use this file as part of a free
+// software library without restriction. Specifically, if other files
+// instantiate templates or use macros or inline functions from this
+// file, or you compile this file and link it with other files to
+// produce an executable, this file does not by itself cause the
+// resulting executable to be covered by the GNU General Public
+// License. This exception does not however invalidate any other
+// reasons why the executable file might be covered by the GNU General
+// Public License.
+
+#ifndef MLN_IO_PBMS_LOAD_HH
+# define MLN_IO_PBMS_LOAD_HH
+
+/// \file mln/io/pbms/load.hh
+///
+/// Define a function which loads multiple pbm images into
+/// a 3D image.
+
+
+# include <iostream>
+# include <fstream>
+# include <string>
+
+# include <mln/core/image/image2d.hh>
+# include <mln/core/image/image3d.hh>
+# include <mln/io/pnms/load.hh>
+# include <mln/make/image3d.hh>
+
+namespace mln
+{
+
+ namespace io
+ {
+
+ namespace pbms
+ {
+
+ /// Load pbms images as slices of a 3D Milena image.
+ ///
+ /// \param[out] ima A reference to the 3D image which will receive
+ /// data.
+ /// \param[in] filenames The list of 2D images to load..
+ void load(image3d<bool>& ima,
+ const util::array<std::string>& filenames);
+
+# ifndef MLN_INCLUDE_ONLY
+
+
+ inline
+ void load(image3d<bool>& ima,
+ const util::array<std::string>& filenames)
+ {
+ trace::entering("mln::io::pbms::load");
+
+ io::pnms::load<image2d<bool> >(PBM, ima, filenames);
+
+ trace::exiting("mln::io::pbms::load");
+ }
+
+
+# endif // ! MLN_INCLUDE_ONLY
+
+ } // end of namespace mln::io::pbms
+
+ } // end of namespace mln::io
+
+} // end of namespace mln
+
+
+#endif // ! MLN_IO_PBMS_LOAD_HH
Index: trunk/milena/mln/io/pgms/all.hh
===================================================================
--- trunk/milena/mln/io/pgms/all.hh (revision 0)
+++ trunk/milena/mln/io/pgms/all.hh (revision 3989)
@@ -0,0 +1,48 @@
+// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
+//
+// This file is part of the Milena Library. This library is free
+// software; you can redistribute it and/or modify it under the terms
+// of the GNU General Public License version 2 as published by the
+// Free Software Foundation.
+//
+// This 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
+// General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this library; see the file COPYING. If not, write to
+// the Free Software Foundation, 51 Franklin Street, Fifth Floor,
+// Boston, MA 02111-1307, USA.
+//
+// As a special exception, you may use this file as part of a free
+// software library without restriction. Specifically, if other files
+// instantiate templates or use macros or inline functions from this
+// file, or you compile this file and link it with other files to
+// produce an executable, this file does not by itself cause the
+// resulting executable to be covered by the GNU General Public
+// License. This exception does not however invalidate any other
+// reasons why the executable file might be covered by the GNU General
+// Public License.
+
+#ifndef MLN_IO_PGMS_ALL_HH
+# define MLN_IO_PGMS_ALL_HH
+
+/// \file mln/io/pgms/all.hh
+/// \brief Inclusion of all PGMS I/O routines.
+
+
+namespace mln
+{
+
+ namespace io
+ {
+ /// Namespace of pgms input/output handling.
+ namespace pgms {}
+ }
+
+}
+
+# include <mln/io/pgms/load.hh>
+
+#endif // ! MLN_IO_PGMS_ALL_HH
Index: trunk/milena/mln/io/pgms/load.hh
===================================================================
--- trunk/milena/mln/io/pgms/load.hh (revision 0)
+++ trunk/milena/mln/io/pgms/load.hh (revision 3989)
@@ -0,0 +1,91 @@
+// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+// EPITA Research and Development Laboratory (LRDE)
+//
+// This file is part of the Milena Library. This library is free
+// software; you can redistribute it and/or modify it under the terms
+// of the GNU General Public License version 2 as published by the
+// Free Software Foundation.
+//
+// This 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
+// General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this library; see the file COPYING. If not, write to
+// the Free Software Foundation, 51 Franklin Street, Fifth Floor,
+// Boston, MA 02111-1307, USA.
+//
+// As a special exception, you may use this file as part of a free
+// software library without restriction. Specifically, if other files
+// instantiate templates or use macros or inline functions from this
+// file, or you compile this file and link it with other files to
+// produce an executable, this file does not by itself cause the
+// resulting executable to be covered by the GNU General Public
+// License. This exception does not however invalidate any other
+// reasons why the executable file might be covered by the GNU General
+// Public License.
+
+#ifndef MLN_IO_PGMS_LOAD_HH
+# define MLN_IO_PGMS_LOAD_HH
+
+/// \file mln/io/pgms/load.hh
+///
+/// \brief Define a function which loads multiple pgm images into
+/// a 3D image.
+
+# include <iostream>
+# include <fstream>
+# include <string>
+
+# include <mln/core/image/image2d.hh>
+# include <mln/core/image/image3d.hh>
+# include <mln/value/int_u8.hh>
+# include <mln/io/pnms/load.hh>
+# include <mln/make/image3d.hh>
+
+
+namespace mln
+{
+
+ namespace io
+ {
+
+ namespace pgms
+ {
+
+ /// Load pgm images as slices of a 3D Milena image.
+ ///
+ /// \param[out] ima A reference to the 3D image which will receive
+ /// data.
+ /// \param[in] filenames The list of 2D images to load..
+ ///
+ template <typename V>
+ void load(image3d<V>& ima,
+ const util::array<std::string>& filenames);
+
+# ifndef MLN_INCLUDE_ONLY
+
+
+ template <typename V>
+ inline
+ void load(image3d<V>& ima,
+ const util::array<std::string>& filenames)
+ {
+ trace::entering("mln::io::pgms::load");
+
+ io::pnms::load<image2d<V> >(PGM, ima, filenames);
+
+ trace::exiting("mln::io::pgms::load");
+ }
+
+# endif // ! MLN_INCLUDE_ONLY
+
+ } // end of namespace mln::io::pgms
+
+ } // end of namespace mln::io
+
+} // end of namespace mln
+
+
+#endif // ! MLN_IO_PGMS_LOAD_HH
Index: trunk/milena/mln/io/pnms/all.hh
===================================================================
--- trunk/milena/mln/io/pnms/all.hh (revision 0)
+++ trunk/milena/mln/io/pnms/all.hh (revision 3989)
@@ -0,0 +1,48 @@
+// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
+//
+// This file is part of the Milena Library. This library is free
+// software; you can redistribute it and/or modify it under the terms
+// of the GNU General Public License version 2 as published by the
+// Free Software Foundation.
+//
+// This 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
+// General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this library; see the file COPYING. If not, write to
+// the Free Software Foundation, 51 Franklin Street, Fifth Floor,
+// Boston, MA 02111-1307, USA.
+//
+// As a special exception, you may use this file as part of a free
+// software library without restriction. Specifically, if other files
+// instantiate templates or use macros or inline functions from this
+// file, or you compile this file and link it with other files to
+// produce an executable, this file does not by itself cause the
+// resulting executable to be covered by the GNU General Public
+// License. This exception does not however invalidate any other
+// reasons why the executable file might be covered by the GNU General
+// Public License.
+
+#ifndef MLN_IO_PNMS_ALL_HH
+# define MLN_IO_PNMS_ALL_HH
+
+/// \file mln/io/pnms/all.hh
+/// \brief Inclusion of all PNMS I/O routines.
+
+
+namespace mln
+{
+
+ namespace io
+ {
+ /// Namespace of pnms input/output handling.
+ namespace pnms {}
+ }
+
+}
+
+# include <mln/io/pnms/load.hh>
+
+#endif // ! MLN_IO_PNMS_ALL_HH
Index: trunk/milena/mln/io/pnms/load.hh
===================================================================
--- trunk/milena/mln/io/pnms/load.hh (revision 0)
+++ trunk/milena/mln/io/pnms/load.hh (revision 3989)
@@ -0,0 +1,104 @@
+// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+// EPITA Research and Development Laboratory (LRDE)
+//
+// This file is part of the Milena Library. This library is free
+// software; you can redistribute it and/or modify it under the terms
+// of the GNU General Public License version 2 as published by the
+// Free Software Foundation.
+//
+// This 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
+// General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this library; see the file COPYING. If not, write to
+// the Free Software Foundation, 51 Franklin Street, Fifth Floor,
+// Boston, MA 02111-1307, USA.
+//
+// As a special exception, you may use this file as part of a free
+// software library without restriction. Specifically, if other files
+// instantiate templates or use macros or inline functions from this
+// file, or you compile this file and link it with other files to
+// produce an executable, this file does not by itself cause the
+// resulting executable to be covered by the GNU General Public
+// License. This exception does not however invalidate any other
+// reasons why the executable file might be covered by the GNU General
+// Public License.
+
+#ifndef MLN_IO_PNMS_LOAD_HH
+# define MLN_IO_PNMS_LOAD_HH
+
+/// \file mln/io/pnms/load.hh
+///
+/// \brief Define a function which loads multiple pnm images into
+/// a 3D image.
+
+# include <iostream>
+# include <fstream>
+# include <string>
+
+# include <mln/core/image/image2d.hh>
+# include <mln/core/image/image3d.hh>
+# include <mln/value/int_u8.hh>
+# include <mln/io/pnm/load.hh>
+# include <mln/make/image3d.hh>
+
+
+namespace mln
+{
+
+ namespace io
+ {
+
+ namespace pnms
+ {
+
+ /// Load pnm images as slices of a 3D Milena image.
+ ///
+ /// \param[in] type The type of the pnm files.
+ /// \param[out] ima A reference to the 3D image which will receive
+ /// data.
+ /// \param[in] filenames The list of 2D images to load..
+ ///
+ template <typename V>
+ void load(char type,
+ image3d<V>& ima,
+ const util::array<std::string>& filenames);
+
+# ifndef MLN_INCLUDE_ONLY
+
+
+ template <typename V>
+ inline
+ void load(char type,
+ image3d<V>& ima,
+ const util::array<std::string>& filenames)
+ {
+ trace::entering("mln::io::pnms::load");
+ mln_precondition(!filenames.is_empty());
+
+ util::array<image2d<V> > slices;
+
+ for (unsigned i = 0; i < filenames.nelements(); ++i)
+ {
+ image2d<V> tmp;
+ io::pnm::load<image2d<V> >(type, tmp, filenames[i]);
+ slices.append(tmp);
+ }
+
+ ima = make::image3d(slices);
+
+ trace::exiting("mln::io::pnms::load");
+ }
+
+# endif // ! MLN_INCLUDE_ONLY
+
+ } // end of namespace mln::io::pnms
+
+ } // end of namespace mln::io
+
+} // end of namespace mln
+
+
+#endif // ! MLN_IO_PNMS_LOAD_HH
Index: trunk/milena/mln/io/pbm/load.hh
===================================================================
--- trunk/milena/mln/io/pbm/load.hh (revision 3988)
+++ trunk/milena/mln/io/pbm/load.hh (revision 3989)
@@ -43,7 +43,6 @@
# include <mln/core/image/image3d.hh>
# include <mln/io/pnm/load_header.hh>
-# include <mln/make/image3d.hh>
namespace mln
{
@@ -72,13 +71,6 @@
///
image2d<bool> load(const std::string& filename);
- /// Load ppm images as slices of a 3D Milena image.
- ///
- /// \param[out] ima A reference to the 3D image which will receive
- /// data.
- /// \param[in] filenames The list of 2D images to load..
- void load(image3d<bool>& ima,
- const util::array<std::string>& filenames);
# ifndef MLN_INCLUDE_ONLY
@@ -171,28 +163,6 @@
}
- inline
- void load(image3d<bool>& ima,
- const util::array<std::string>& filenames)
- {
- trace::entering("mln::io::pbm::load");
- mln_precondition(!filenames.is_empty());
-
- util::array<image2d<bool> > slices;
-
- for (unsigned i = 0; i < filenames.nelements(); ++i)
- {
- image2d<bool> tmp;
- io::pbm::load(tmp, filenames[i]);
- slices.append(tmp);
- }
-
- ima = make::image3d(slices);
-
- trace::exiting("mln::io::pbm::load");
- }
-
-
# endif // ! MLN_INCLUDE_ONLY
} // end of namespace mln::io::pbm
1
0
https://svn.lrde.epita.fr/svn/oln/trunk/milena
Index: ChangeLog
from Thierry Geraud <thierry.geraud(a)lrde.epita.fr>
Fix the library name in the copyright text.
* trash/clock_neighb2d.cc,
* trash/neighb_image.cc,
* trash/sparse_image.cc,
* trash/mono_rle_encode.hh,
* trash/boost_graph_structure.hh,
* trash/boost_graph_access.hh,
* trash/value_encode.hh,
* trash/bgraph_image.cc,
* trash/t_image.cc,
* trash/boost_graph.cc,
* trash/fi_adaptor.cc,
* trash/translate_image.hh,
* trash/obased_rle_image.hh,
* trash/mono_rle_image.cc,
* trash/value_enc_image.hh,
* trash/graph_image.hh,
* trash/mono_obased_rle_encode.hh,
* trash/display_show.hh,
* trash/clock_neighb.hh,
* trash/display_color_pretty.hh,
* trash/sparse_encode.hh,
* trash/line_graph_image.hh,
* trash/boost_graph_property.hh,
* trash/to_tiles.hh,
* trash/display_remove.hh,
* trash/p_bgraph.hh,
* trash/display_save.hh,
* trash/rle_image.hh,
* trash/translate_image.cc,
* trash/p_bgraph_piter.hh,
* trash/obased_rle_image.cc,
* trash/value_enc_image.cc,
* trash/mono_obased_rle_image.hh,
* trash/neighb_get.hh,
* trash/display_show.cc,
* trash/clock_neighb2d.hh,
* trash/neighb_image.hh,
* trash/rle_encode.hh,
* trash/sparse_image.hh,
* trash/display_color_pretty.cc,
* trash/bgraph_image.hh,
* trash/display_save_and_show.hh,
* trash/t_image.hh,
* trash/save_and_show.cc,
* trash/bgraph_psite.hh,
* trash/boost_graph.hh,
* trash/fi_adaptor.hh,
* trash/to_tiles.cc,
* trash/p_bgraph.cc,
* trash/rle_image.cc,
* trash/mono_rle_image.hh,
* trash/obased_rle_encode.hh,
* trash/mono_obased_rle_image.cc,
* trash/clock_neighb2d_bis.cc,
* mln/topo/face_iter.hh,
* mln/topo/is_simple_cell.hh,
* mln/topo/adj_higher_face_iter.hh,
* mln/topo/skeleton/is_simple_point.hh,
* mln/topo/skeleton/breadth_first_thinning.hh,
* mln/topo/skeleton/crest.hh,
* mln/topo/essential.hh,
* mln/topo/algebraic_face.hh,
* mln/topo/face_data.hh,
* mln/topo/detach.hh,
* mln/topo/adj_lower_higher_face_iter.hh,
* mln/topo/face.hh,
* mln/topo/n_face_iter.hh,
* mln/topo/adj_lower_dim_connected_n_face_iter.hh,
* mln/topo/complex_iterators.hh,
* mln/topo/center_only_iter.hh,
* mln/topo/algebraic_n_face.hh,
* mln/topo/static_n_face_iter.hh,
* mln/topo/attic/faces_iter.hh,
* mln/topo/is_n_face.hh,
* mln/topo/complex.hh,
* mln/topo/adj_lower_face_iter.hh,
* mln/topo/all.hh,
* mln/topo/is_simple_2d.hh,
* mln/topo/n_faces_set.hh,
* mln/topo/adj_m_face_iter.hh,
* mln/topo/n_face.hh,
* mln/topo/centered_iter_adapter.hh,
* mln/topo/adj_higher_dim_connected_n_face_iter.hh,
* mln/topo/is_facet.hh,
* mln/topo/internal/complex_relative_iterator_sequence.hh,
* mln/topo/internal/complex_relative_iterator_base.hh,
* mln/topo/internal/complex_set_iterator_base.hh,
* mln/topo/internal/complex_iterator_base.hh,
* mln/trait/accumulator/props.hh,
* mln/trait/accumulator/print.hh,
* mln/trait/site_set/props.hh,
* mln/trait/site_set/print.hh,
* mln/trait/image/props.hh,
* mln/trait/image/print.hh,
* mln/trait/promote.hh,
* mln/trait/ch_value.hh,
* mln/trait/essential.hh,
* mln/trait/solve.hh,
* mln/trait/windows.hh,
* mln/trait/ch_function_value.hh,
* mln/trait/solve_binary.hh,
* mln/trait/undef.hh,
* mln/trait/accumulators.hh,
* mln/trait/site_sets.hh,
* mln/trait/concrete.hh,
* mln/trait/images.hh,
* mln/trait/solve_unary.hh,
* mln/trait/neighborhood.hh,
* mln/trait/all.hh,
* mln/trait/functions.hh,
* mln/trait/window/props.hh,
* mln/trait/window/print.hh,
* mln/trait/image_from_grid.hh,
* mln/trait/value_.hh,
* mln/trait/value/kind.hh,
* mln/trait/value/essential.hh,
* mln/trait/value/all.hh,
* mln/trait/value/quant.hh,
* mln/trait/value/print.hh,
* mln/trait/value/nature.hh,
* mln/trait/value/internal/all.hh,
* mln/trait/value/internal/comp.hh,
* mln/trait/value/comp.hh,
* mln/trait/op/leq.hh,
* mln/trait/op/times.hh,
* mln/trait/op/div.hh,
* mln/trait/op/neq.hh,
* mln/trait/op/plus.hh,
* mln/trait/op/ord.hh,
* mln/trait/op/essential.hh,
* mln/trait/op/greater.hh,
* mln/trait/op/minus.hh,
* mln/trait/op/lor.hh,
* mln/trait/op/not.hh,
* mln/trait/op/postdec.hh,
* mln/trait/op/and.hh,
* mln/trait/op/predec.hh,
* mln/trait/op/eq.hh,
* mln/trait/op/less.hh,
* mln/trait/op/decl.hh,
* mln/trait/op/all.hh,
* mln/trait/op/uplus.hh,
* mln/trait/op/xor.hh,
* mln/trait/op/geq.hh,
* mln/trait/op/mod.hh,
* mln/trait/op/postinc.hh,
* mln/trait/op/or.hh,
* mln/trait/op/preinc.hh,
* mln/trait/op/uminus.hh,
* mln/trait/next/solve_unary.hh,
* mln/trait/next/solve.hh,
* mln/trait/next/solve_proxy.hh,
* mln/trait/next/solve_binary.hh,
* mln/subsampling/subsampling.hh,
* mln/subsampling/essential.hh,
* mln/subsampling/all.hh,
* mln/subsampling/gaussian_subsampling.hh,
* mln/histo/compute.spe.hh,
* mln/histo/essential.hh,
* mln/histo/all.hh,
* mln/histo/point_from_value.hh,
* mln/histo/compute.hh,
* mln/histo/array.hh,
* mln/debug/iota.spe.hh,
* mln/debug/superpose.hh,
* mln/debug/histo.hh,
* mln/debug/println.hh,
* mln/debug/quiet.hh,
* mln/debug/essential.hh,
* mln/debug/format.hh,
* mln/debug/iota.hh,
* mln/debug/put_word.hh,
* mln/debug/println_with_border.spe.hh,
* mln/debug/slices_2d.hh,
* mln/debug/all.hh,
* mln/debug/println.spe.hh,
* mln/debug/println_with_border.hh,
* mln/debug/draw_graph.hh,
* mln/debug/filename.hh,
* mln/world/inter_pixel/immerse.hh,
* mln/world/inter_pixel/neighb2d.hh,
* mln/world/inter_pixel/separator_to_pixels.hh,
* mln/world/inter_pixel/full2image.hh,
* mln/world/inter_pixel/all.hh,
* mln/world/inter_pixel/display_edge.hh,
* mln/world/inter_pixel/is_separator.hh,
* mln/world/inter_pixel/compute.hh,
* mln/world/inter_pixel/is_pixel.hh,
* mln/world/inter_pixel/dim2/is_dot.hh,
* mln/world/inter_pixel/dim2/make_edge_image.hh,
* mln/world/inter_pixel/dim2/all.hh,
* mln/world/inter_pixel/dim2/is_row_odd.hh,
* mln/world/inter_pixel/dim2/is_pixel.hh,
* mln/world/inter_pixel/dim2/is_edge.hh,
* mln/world/all.hh,
* mln/world/binary_2d/projected_histo.hh,
* mln/world/binary_2d/all.hh,
* mln/world/binary_2d/subsample.hh,
* mln/world/binary_2d/enlarge.hh,
* mln/core/site_set/p_complex.hh,
* mln/core/site_set/box.hh,
* mln/core/site_set/p_complex_piter.hh,
* mln/core/site_set/box_piter.hh,
* mln/core/site_set/p_priority.hh,
* mln/core/site_set/p_faces.hh,
* mln/core/site_set/p_queue.hh,
* mln/core/site_set/p_vaccess.hh,
* mln/core/site_set/p_key.hh,
* mln/core/site_set/all.hh,
* mln/core/site_set/p_centered.hh,
* mln/core/site_set/p_queue_fast.hh,
* mln/core/site_set/p_n_faces_piter.hh,
* mln/core/site_set/p_graph_piter.hh,
* mln/core/site_set/p_run.hh,
* mln/core/site_set/p_run_piter.hh,
* mln/core/site_set/essential.hh,
* mln/core/site_set/p_double.hh,
* mln/core/site_set/p_mutable_array_of.hh,
* mln/core/site_set/p_line2d.hh,
* mln/core/site_set/p_array.hh,
* mln/core/site_set/p_set_of.hh,
* mln/core/site_set/p_image.hh,
* mln/core/site_set/p_vertices.hh,
* mln/core/site_set/p_transformed.hh,
* mln/core/site_set/p_transformed_piter.hh,
* mln/core/site_set/attic/p_faces_piter.hh,
* mln/core/site_set/attic/p_complex_faces_piter.hh,
* mln/core/site_set/p_edges.hh,
* mln/core/site_set/p_vertices_psite.hh,
* mln/core/site_set/p_edges_psite.hh,
* mln/core/site_set/p_set.hh,
* mln/core/site_set/complex_psite.hh,
* mln/core/site_set/p_if.hh,
* mln/core/site_set/operators.hh,
* mln/core/site_set/p_if_piter.hh,
* mln/core/pixel.hh,
* mln/core/macros.hh,
* mln/core/image/complex_windows.hh,
* mln/core/image/complex_neighborhoods.hh,
* mln/core/image/essential.hh,
* mln/core/image/flat_image.hh,
* mln/core/image/dmorph/extension_fun.hh,
* mln/core/image/dmorph/hexa.hh,
* mln/core/image/dmorph/transformed_image.hh,
* mln/core/image/dmorph/hexa_piter.hh,
* mln/core/image/dmorph/sub_image.hh,
* mln/core/image/dmorph/image_if.hh,
* mln/core/image/dmorph/extended.hh,
* mln/core/image/dmorph/slice_image.hh,
* mln/core/image/dmorph/extension_ima.hh,
* mln/core/image/dmorph/p2p_image.hh,
* mln/core/image/dmorph/all.hh,
* mln/core/image/dmorph/sub_image_if.hh,
* mln/core/image/dmorph/unproject_image.hh,
* mln/core/image/dmorph/extension_val.hh,
* mln/core/image/dmorph/image2d_h.hh,
* mln/core/image/graph_window_piter.hh,
* mln/core/image/graph_elt_window.hh,
* mln/core/image/graph_elt_neighborhood.hh,
* mln/core/image/ch_piter.hh,
* mln/core/image/imorph/lazy_image.hh,
* mln/core/image/imorph/plain.hh,
* mln/core/image/imorph/tr_image.hh,
* mln/core/image/imorph/all.hh,
* mln/core/image/imorph/interpolated.hh,
* mln/core/image/imorph/labeled_image.hh,
* mln/core/image/imorph/decorated_image.hh,
* mln/core/image/imorph/safe.hh,
* mln/core/image/complex_window_piter.hh,
* mln/core/image/complex_neighborhood_piter.hh,
* mln/core/image/edge_image.hh,
* mln/core/image/image1d.hh,
* mln/core/image/all.hh,
* mln/core/image/image2d.hh,
* mln/core/image/graph_window_if_piter.hh,
* mln/core/image/image3d.hh,
* mln/core/image/complex_image.hh,
* mln/core/image/graph_elt_window_if.hh,
* mln/core/image/graph_elt_neighborhood_if.hh,
* mln/core/image/vmorph/thru_image.hh,
* mln/core/image/vmorph/all.hh,
* mln/core/image/vmorph/fun_image.hh,
* mln/core/image/vmorph/cast_image.hh,
* mln/core/image/vmorph/violent_cast_image.hh,
* mln/core/image/vmorph/thrubin_image.hh,
* mln/core/image/vertex_image.hh,
* mln/core/faces_psite.hh,
* mln/core/trait/essential.hh,
* mln/core/trait/all.hh,
* mln/core/trait/pixter.hh,
* mln/core/trait/qlf_value.hh,
* mln/core/trait/op_mult.hh,
* mln/core/routine/initialize.hh,
* mln/core/routine/ops.hh,
* mln/core/routine/init.hh,
* mln/core/routine/primary.hh,
* mln/core/routine/exact.hh,
* mln/core/routine/essential.hh,
* mln/core/routine/extend.hh,
* mln/core/routine/all.hh,
* mln/core/routine/duplicate.hh,
* mln/core/routine/init.hxx,
* mln/core/essential.hh,
* mln/core/var.hh,
* mln/core/point.hh,
* mln/core/alias/neighb1d.hh,
* mln/core/alias/complex_geometry.hh,
* mln/core/alias/dpoint1d.hh,
* mln/core/alias/neighb2d.hh,
* mln/core/alias/dpoint2d.hh,
* mln/core/alias/neighb3d.hh,
* mln/core/alias/dpoint3d.hh,
* mln/core/alias/dpoint2d_h.hh,
* mln/core/alias/p_runs2d.hh,
* mln/core/alias/all.hh,
* mln/core/alias/box1d.hh,
* mln/core/alias/box2d.hh,
* mln/core/alias/point1d.hh,
* mln/core/alias/point2d.hh,
* mln/core/alias/box3d.hh,
* mln/core/alias/point3d.hh,
* mln/core/alias/box2d_h.hh,
* mln/core/alias/point2d_h.hh,
* mln/core/alias/w_window1d_int.hh,
* mln/core/alias/window1d.hh,
* mln/core/alias/w_window2d_int.hh,
* mln/core/alias/window2d.hh,
* mln/core/alias/w_window3d_int.hh,
* mln/core/alias/window3d.hh,
* mln/core/alias/vec2d.hh,
* mln/core/alias/vec3d.hh,
* mln/core/alias/w_window1d_float.hh,
* mln/core/alias/w_window2d_float.hh,
* mln/core/alias/p_run2d.hh,
* mln/core/alias/complex_image.hh,
* mln/core/alias/w_window3d_float.hh,
* mln/core/neighb.hh,
* mln/core/box_runstart_piter.hh,
* mln/core/w_window.hh,
* mln/core/concept/proxy.hh,
* mln/core/concept/meta_accumulator.hh,
* mln/core/concept/function.hh,
* mln/core/concept/value_iterator.hh,
* mln/core/concept/value_set.hh,
* mln/core/concept/weighted_window.hh,
* mln/core/concept/box.hh,
* mln/core/concept/proxy.hxx,
* mln/core/concept/point.hh,
* mln/core/concept/pixel_iterator.hh,
* mln/core/concept/browsing.hh,
* mln/core/concept/meta_function.hh,
* mln/core/concept/mesh.hh,
* mln/core/concept/meta_fun.hh,
* mln/core/concept/graph.hh,
* mln/core/concept/site_proxy.hh,
* mln/core/concept/object.hh,
* mln/core/concept/window.hh,
* mln/core/concept/neighborhood.hh,
* mln/core/concept/doc/image.hh,
* mln/core/concept/doc/value_iterator.hh,
* mln/core/concept/doc/weighted_window.hh,
* mln/core/concept/doc/value_set.hh,
* mln/core/concept/doc/box.hh,
* mln/core/concept/doc/iterator.hh,
* mln/core/concept/doc/pixel_iterator.hh,
* mln/core/concept/doc/generalized_pixel.hh,
* mln/core/concept/doc/dpoint.hh,
* mln/core/concept/doc/point_iterator.hh,
* mln/core/concept/doc/object.hh,
* mln/core/concept/doc/neighborhood.hh,
* mln/core/concept/doc/window.hh,
* mln/core/concept/doc/image_fastest.hh,
* mln/core/concept/doc/point_site.hh,
* mln/core/concept/doc/site_set.hh,
* mln/core/concept/doc/accumulator.hh,
* mln/core/concept/all.hh,
* mln/core/concept/image.hh,
* mln/core/concept/pseudo_site.hh,
* mln/core/concept/delta_point_site.hh,
* mln/core/concept/iterator.hh,
* mln/core/concept/generalized_pixel.hh,
* mln/core/concept/literal.hh,
* mln/core/concept/dpoint.hh,
* mln/core/concept/gpoint.hh,
* mln/core/concept/site.hh,
* mln/core/concept/gdpoint.hh,
* mln/core/concept/regular_grid.hh,
* mln/core/concept/value.hh,
* mln/core/concept/site_iterator.hh,
* mln/core/concept/point_site.hh,
* mln/core/concept/site_set.hh,
* mln/core/concept/accumulator.hh,
* mln/core/dpoint.hh,
* mln/core/tags.hh,
* mln/core/pixter1d.hh,
* mln/core/def/coord.hh,
* mln/core/def/essential.hh,
* mln/core/def/all.hh,
* mln/core/def/low_quant_nbits.hh,
* mln/core/def/coordf.hh,
* mln/core/pixter2d.hh,
* mln/core/pixter3d.hh,
* mln/core/window.hh,
* mln/core/all.hh,
* mln/core/grids.hh,
* mln/core/dpoints_pixter.hh,
* mln/core/category.hh,
* mln/core/contract.hh,
* mln/core/a_point_of.hh,
* mln/core/internal/pixel_iterator_base.hh,
* mln/core/internal/coord_impl.hh,
* mln/core/internal/complex_neighborhood_base.hh,
* mln/core/internal/piter_identity.hh,
* mln/core/internal/site_set_impl.hh,
* mln/core/internal/geom_bbox.hh,
* mln/core/internal/site_relative_iterator_base.hh,
* mln/core/internal/exact.hh,
* mln/core/internal/run_image.hh,
* mln/core/internal/site_iterator_base.hh,
* mln/core/internal/data.hh,
* mln/core/internal/site_set_base.hh,
* mln/core/internal/image_base.hh,
* mln/core/internal/image_morpher.hh,
* mln/core/internal/check/image_all.hh,
* mln/core/internal/check/image_fastest.hh,
* mln/core/internal/weighted_window_base.hh,
* mln/core/internal/force_exact.hh,
* mln/core/internal/graph_window_base.hh,
* mln/core/internal/site_set_iterator_base.hh,
* mln/core/internal/p_complex_piter_base.hh,
* mln/core/internal/morpher_lvalue.hh,
* mln/core/internal/image_primary.hh,
* mln/core/internal/image_identity.hh,
* mln/core/internal/piter_adaptor.hh,
* mln/core/internal/graph_psite_base.hh,
* mln/core/internal/neighborhood_base.hh,
* mln/core/internal/window_base.hh,
* mln/core/internal/pixel_impl.hh,
* mln/core/internal/image_domain_morpher.hh,
* mln/core/internal/complex_window_p_base.hh,
* mln/core/internal/fixme.hh,
* mln/core/internal/box_impl.hh,
* mln/core/internal/image_value_morpher.hh,
* mln/core/internal/pseudo_site_base.hh,
* mln/core/internal/neighb_niter_impl.hh,
* mln/core/internal/exact_gcc_2_95.hh,
* mln/core/internal/set_of.hh,
* mln/core/internal/classical_window_base.hh,
* mln/core/internal/is_masked_impl_selector.hh,
* mln/core/dpsites_piter.hh,
* mln/math/min.hh,
* mln/math/cos.hh,
* mln/math/acos.hh,
* mln/math/max.hh,
* mln/math/essential.hh,
* mln/math/jacobi.hh,
* mln/math/round.hh,
* mln/math/sqrt.hh,
* mln/math/sin.hh,
* mln/math/diff_abs.hh,
* mln/math/round_sat.hh,
* mln/math/sign.hh,
* mln/math/abs.hh,
* mln/math/sqr.hh,
* mln/math/all.hh,
* mln/math/pi.hh,
* mln/literal/colors.hh,
* mln/literal/one.hh,
* mln/literal/ops.hh,
* mln/literal/min.hh,
* mln/literal/grays.hh,
* mln/literal/max.hh,
* mln/literal/essential.hh,
* mln/literal/origin.hh,
* mln/literal/all.hh,
* mln/literal/identity.hh,
* mln/literal/black.hh,
* mln/literal/zero.hh,
* mln/literal/white.hh,
* mln/draw/essential.hh,
* mln/draw/line.hh,
* mln/draw/all.hh,
* mln/draw/box.hh,
* mln/draw/plot.hh,
* mln/graph/attribute/card.hh,
* mln/graph/attribute/representative.hh,
* mln/graph/essential.hh,
* mln/graph/all.hh,
* mln/graph/compute.hh,
* mln/graph/labeling.hh,
* mln/graph/to_neighb.hh,
* mln/graph/to_win.hh,
* mln/opt/at.hh,
* mln/opt/essential.hh,
* mln/opt/all.hh,
* mln/opt/element.hh,
* mln/opt/value.hh,
* mln/metal/unqualif.hh,
* mln/metal/ands.hh,
* mln/metal/fix_return.hh,
* mln/metal/const.hh,
* mln/metal/not_equal.hh,
* mln/metal/is_not_ref.hh,
* mln/metal/unconst.hh,
* mln/metal/ret.hh,
* mln/metal/math/root.hh,
* mln/metal/math/max.hh,
* mln/metal/math/pow.hh,
* mln/metal/math/all.hh,
* mln/metal/math/sqrt.hh,
* mln/metal/is_not_a.hh,
* mln/metal/bool.hh,
* mln/metal/if.hh,
* mln/metal/same_point.hh,
* mln/metal/is_not_const.hh,
* mln/metal/is_ref.hh,
* mln/metal/equal.hh,
* mln/metal/abort.hh,
* mln/metal/unptr.hh,
* mln/metal/all.hh,
* mln/metal/templated_by.hh,
* mln/metal/same_coord.hh,
* mln/metal/is_a.hh,
* mln/metal/vec.hh,
* mln/metal/array.hh,
* mln/metal/bexpr.hh,
* mln/metal/is_const.hh,
* mln/metal/mat.hh,
* mln/metal/essential.hh,
* mln/metal/int.hh,
* mln/metal/is_not.hh,
* mln/metal/none.hh,
* mln/metal/goes_to.hh,
* mln/metal/array1d.hh,
* mln/metal/array2d.hh,
* mln/metal/array3d.hh,
* mln/metal/converts_to.hh,
* mln/metal/is.hh,
* mln/metal/ref.hh,
* mln/metal/is_unqualif.hh,
* mln/metal/unref.hh,
* mln/transformation/essential.hh,
* mln/transformation/all.hh,
* mln/transformation/rotate.hh,
* mln/all.hh,
* mln/arith/times.hh,
* mln/arith/div.hh,
* mln/arith/min.hh,
* mln/arith/plus.hh,
* mln/arith/includes.hh,
* mln/arith/essential.hh,
* mln/arith/revert.hh,
* mln/arith/times.spe.hh,
* mln/arith/all.hh,
* mln/arith/div.spe.hh,
* mln/arith/min.spe.hh,
* mln/arith/minus.hh,
* mln/arith/diff_abs.hh,
* mln/arith/revert.spe.hh,
* mln/data/update.hh,
* mln/data/fill_with_image.hh,
* mln/data/fill.hh,
* mln/data/was.median.hh,
* mln/data/memcpy_.hh,
* mln/data/transform.spe.hh,
* mln/data/paste.spe.hh,
* mln/data/fill_with_value.spe.hh,
* mln/data/to_enc.hh,
* mln/data/all.hh,
* mln/data/transform.hh,
* mln/data/replace.hh,
* mln/data/approx/essential.hh,
* mln/data/approx/all.hh,
* mln/data/approx/median.hh,
* mln/data/apply.spe.hh,
* mln/data/paste.hh,
* mln/data/stretch.hh,
* mln/data/fill_with_value.hh,
* mln/data/sort_offsets.hh,
* mln/data/apply.hh,
* mln/data/compare.hh,
* mln/data/essential.hh,
* mln/data/saturate.hh,
* mln/data/memset_.hh,
* mln/data/median.hh,
* mln/data/naive/essential.hh,
* mln/data/naive/all.hh,
* mln/data/naive/median.hh,
* mln/data/abs.hh,
* mln/data/transform_inplace.hh,
* mln/data/paste_without_localization.hh,
* mln/data/fill_with_image.spe.hh,
* mln/data/fast_median.hh,
* mln/data/compute.hh,
* mln/data/sort_psites.hh,
* mln/data/convert.hh,
* mln/linear/log.hh,
* mln/linear/ch_convolve.hh,
* mln/linear/essential.hh,
* mln/linear/all.hh,
* mln/linear/convolve_directional.hh,
* mln/linear/convolve_2x1d.hh,
* mln/linear/sobel_2d.hh,
* mln/linear/gaussian.hh,
* mln/linear/convolve.hh,
* mln/linear/local/convolve.hh,
* mln/linear/lap.hh,
* mln/linear/gaussian/impl.hh,
* mln/linear/gaussian/filter.hh,
* mln/linear/gaussian/internal/coefficients.hh,
* mln/linear/gaussian_directional_2d.hh,
* mln/linear/gaussian_1d.hh,
* mln/extract/hue.hh,
* mln/extract/blue.hh,
* mln/extract/essential.hh,
* mln/extract/sat.hh,
* mln/extract/all.hh,
* mln/extract/red.hh,
* mln/extract/lum.hh,
* mln/extract/green.hh,
* mln/transform/distance_and_influence_zone_geodesic.hh,
* mln/transform/distance_front.hh,
* mln/transform/distance_and_closest_point_geodesic.hh,
* mln/transform/influence_zone_geodesic.hh,
* mln/transform/essential.hh,
* mln/transform/all.hh,
* mln/transform/hough.hh,
* mln/transform/influence_zone_front.hh,
* mln/transform/distance_geodesic.hh,
* mln/transform/internal/influence_zone_functor.hh,
* mln/transform/internal/closest_point_functor.hh,
* mln/transform/internal/all.hh,
* mln/transform/internal/distance_functor.hh,
* mln/tag/init.hh,
* mln/tag/skeleton.hh,
* mln/tag/essential.hh,
* mln/tag/all.hh,
* mln/accu/site_set/essential.hh,
* mln/accu/site_set/all.hh,
* mln/accu/site_set/rectangularity.hh,
* mln/accu/nil.hh,
* mln/accu/transform_line.hh,
* mln/accu/image/take_n_times.hh,
* mln/accu/image/init.hh,
* mln/accu/image/take.hh,
* mln/accu/image/essential.hh,
* mln/accu/image/set_value.hh,
* mln/accu/image/untake.hh,
* mln/accu/image/all.hh,
* mln/accu/image/take_as_init.hh,
* mln/accu/image/to_result.hh,
* mln/accu/count_adjacent_vertices.hh,
* mln/accu/transform_directional.hh,
* mln/accu/tuple.hh,
* mln/accu/pair.hh,
* mln/accu/lor.hh,
* mln/accu/label_used.hh,
* mln/accu/sum.hh,
* mln/accu/all.hh,
* mln/accu/transform_diagonal.hh,
* mln/accu/max_site.hh,
* mln/accu/count_labels.hh,
* mln/accu/transform.hh,
* mln/accu/inf.hh,
* mln/accu/internal/couple.hh,
* mln/accu/internal/base.hh,
* mln/accu/maj_h.hh,
* mln/accu/land_basic.hh,
* mln/accu/transform_stop.hh,
* mln/accu/center.hh,
* mln/accu/min.hh,
* mln/accu/take.hh,
* mln/accu/max.hh,
* mln/accu/histo.hh,
* mln/accu/line.hh,
* mln/accu/essential.hh,
* mln/accu/count.hh,
* mln/accu/min_max.hh,
* mln/accu/min_h.hh,
* mln/accu/bbox.hh,
* mln/accu/convolve.hh,
* mln/accu/rank.hh,
* mln/accu/transform_snake.hh,
* mln/accu/max_h.hh,
* mln/accu/median_alt.hh,
* mln/accu/lor_basic.hh,
* mln/accu/p.hh,
* mln/accu/rms.hh,
* mln/accu/rank_high_quant.hh,
* mln/accu/median_h.hh,
* mln/accu/v.hh,
* mln/accu/rank_bool.hh,
* mln/accu/volume.hh,
* mln/accu/sup.hh,
* mln/accu/height.hh,
* mln/accu/compute.hh,
* mln/accu/stat/deviation.hh,
* mln/accu/stat/var.hh,
* mln/accu/stat/variance.hh,
* mln/accu/stat/all.hh,
* mln/accu/land.hh,
* mln/accu/mean.hh,
* mln/value/int_s32.hh,
* mln/value/other.hh,
* mln/value/proxy.hh,
* mln/value/int_u12.hh,
* mln/value/int_u32.hh,
* mln/value/int_s16.hh,
* mln/value/interval.hh,
* mln/value/mixin.hh,
* mln/value/int_u16.hh,
* mln/value/hsl.hh,
* mln/value/cast.hh,
* mln/value/graylevel.hh,
* mln/value/float01_8.hh,
* mln/value/graylevel_f.hh,
* mln/value/sign.hh,
* mln/value/ops.hh,
* mln/value/lut_vec.hh,
* mln/value/rgb8.hh,
* mln/value/scalar.hh,
* mln/value/float01_.hh,
* mln/value/label_8.hh,
* mln/value/shell.hh,
* mln/value/glf.hh,
* mln/value/all.hh,
* mln/value/int_s.hh,
* mln/value/int_u.hh,
* mln/value/internal/gray_.hh,
* mln/value/internal/limits.hh,
* mln/value/internal/iterable_set.hh,
* mln/value/internal/encoding.hh,
* mln/value/internal/essential.hh,
* mln/value/internal/gray_f.hh,
* mln/value/internal/all.hh,
* mln/value/internal/integer.hh,
* mln/value/internal/convert.hh,
* mln/value/internal/value_like.hh,
* mln/value/rgb16.hh,
* mln/value/aliases.hh,
* mln/value/hsi.hh,
* mln/value/label_16.hh,
* mln/value/int_u_sat.hh,
* mln/value/essential.hh,
* mln/value/equiv.hh,
* mln/value/viter.hh,
* mln/value/gl8.hh,
* mln/value/super_value.hh,
* mln/value/set.hh,
* mln/value/concept/symbolic.hh,
* mln/value/concept/floating.hh,
* mln/value/concept/structured.hh,
* mln/value/concept/built_in.hh,
* mln/value/concept/scalar.hh,
* mln/value/concept/essential.hh,
* mln/value/concept/all.hh,
* mln/value/concept/vectorial.hh,
* mln/value/concept/data.hh,
* mln/value/concept/integer.hh,
* mln/value/int_s8.hh,
* mln/value/stack.hh,
* mln/value/int_u8.hh,
* mln/value/float01.hh,
* mln/value/builtin/ops.hh,
* mln/value/builtin/symbolics.hh,
* mln/value/builtin/carrays.hh,
* mln/value/builtin/floatings.hh,
* mln/value/builtin/essential.hh,
* mln/value/builtin/all.hh,
* mln/value/builtin/promotions.hh,
* mln/value/builtin/integers.hh,
* mln/value/gl16.hh,
* mln/value/rgb.hh,
* mln/value/float01_f.hh,
* mln/value/float01_16.hh,
* mln/value/label.hh,
* mln/border/resize.hh,
* mln/border/fill.hh,
* mln/border/essential.hh,
* mln/border/all.hh,
* mln/border/resize_equal.hh,
* mln/border/adjust.hh,
* mln/border/duplicate.hh,
* mln/border/mirror.hh,
* mln/border/thickness.hh,
* mln/border/equalize.hh,
* mln/border/get.hh,
* mln/border/find.hh,
* mln/make/dummy_p_edges.hh,
* mln/make/influence_zone_adjacency_graph.hh,
* mln/make/rag_and_labeled_wsl.hh,
* mln/make/dpoint2d_h.hh,
* mln/make/w_window.hh,
* mln/make/pix.hh,
* mln/make/p_vertices_with_mass_centers.hh,
* mln/make/region_adjacency_graph.hh,
* mln/make/p_edges_with_mass_centers.hh,
* mln/make/all.hh,
* mln/make/double_neighb2d.hh,
* mln/make/vec.hh,
* mln/make/box1d.hh,
* mln/make/box2d.hh,
* mln/make/dummy_p_vertices.hh,
* mln/make/box3d.hh,
* mln/make/pixel.hh,
* mln/make/mat.hh,
* mln/make/w_window1d.hh,
* mln/make/win_chamfer.hh,
* mln/make/image.hh,
* mln/make/w_window2d.hh,
* mln/make/w_window3d.hh,
* mln/make/box2d_h.hh,
* mln/make/point2d_h.hh,
* mln/make/essential.hh,
* mln/make/attachment.hh,
* mln/make/h_mat.hh,
* mln/make/voronoi.hh,
* mln/make/w_window1d_int.hh,
* mln/make/w_window2d_int.hh,
* mln/make/w_window3d_int.hh,
* mln/make/dual_neighb.hh,
* mln/make/edge_image.hh,
* mln/make/image2d.hh,
* mln/make/image3d.hh,
* mln/make/w_window_directional.hh,
* mln/make/detachment.hh,
* mln/make/relabelfun.hh,
* mln/make/vertex_image.hh,
* mln/make/cell.hh,
* mln/test/positive.hh,
* mln/test/essential.hh,
* mln/test/all.hh,
* mln/test/predicate.hh,
* mln/convert/to.hh,
* mln/convert/impl/from_float_to_value.hh,
* mln/convert/impl/from_image_to_site_set.hh,
* mln/convert/impl/from_site_set_to_image.hh,
* mln/convert/impl/all.hh,
* mln/convert/impl/from_double_to_value.hh,
* mln/convert/impl/from_int_to_value.hh,
* mln/convert/impl/from_value_to_value.hh,
* mln/convert/impl/from_unsigned_to_value.hh,
* mln/convert/to_image.hh,
* mln/convert/to_upper_window.hh,
* mln/convert/from_to.hh,
* mln/convert/essential.hh,
* mln/convert/all.hh,
* mln/convert/to_window.hh,
* mln/convert/to_fun.hh,
* mln/convert/to_p_set.hh,
* mln/convert/from_to.hxx,
* mln/convert/to_dpoint.hh,
* mln/convert/to_p_array.hh,
* mln/estim/sum.hh,
* mln/estim/essential.hh,
* mln/estim/all.hh,
* mln/estim/min_max.hh,
* mln/estim/mean.hh,
* mln/pw/image.hh,
* mln/pw/essential.hh,
* mln/pw/all.hh,
* mln/pw/var.hh,
* mln/pw/cst.hh,
* mln/pw/value.hh,
* mln/pw/internal/image_base.hh,
* mln/essential/1d.hh,
* mln/essential/2d.hh,
* mln/essential/routine.hh,
* mln/essential/3d.hh,
* mln/geom/max_col.hh,
* mln/geom/complex_geometry.hh,
* mln/geom/essential.hh,
* mln/geom/nslis.hh,
* mln/geom/pmin_pmax.hh,
* mln/geom/delta.hh,
* mln/geom/min_sli.hh,
* mln/geom/bbox.hh,
* mln/geom/max_sli.hh,
* mln/geom/seeds2tiling.hh,
* mln/geom/seeds2tiling_roundness.hh,
* mln/geom/size1d.hh,
* mln/geom/size2d.hh,
* mln/geom/size3d.hh,
* mln/geom/chamfer.hh,
* mln/geom/nsites.hh,
* mln/geom/all.hh,
* mln/geom/nrows.hh,
* mln/geom/min_row.hh,
* mln/geom/ninds.hh,
* mln/geom/max_row.hh,
* mln/geom/min_ind.hh,
* mln/geom/ncols.hh,
* mln/geom/max_ind.hh,
* mln/geom/min_col.hh,
* mln/fun/vv2b/implies.hh,
* mln/fun/vv2b/eq.hh,
* mln/fun/vv2b/all.hh,
* mln/fun/vv2b/gt.hh,
* mln/fun/vv2b/ge.hh,
* mln/fun/vv2b/lt.hh,
* mln/fun/vv2b/le.hh,
* mln/fun/c.hh,
* mln/fun/p2b/chess.hh,
* mln/fun/p2b/big_chess.hh,
* mln/fun/p2b/antilogy.hh,
* mln/fun/p2b/essential.hh,
* mln/fun/p2b/tautology.hh,
* mln/fun/p2b/all.hh,
* mln/fun/p2b/has.hh,
* mln/fun/v2w2v/cos.hh,
* mln/fun/v2w2v/all.hh,
* mln/fun/meta/hue.hh,
* mln/fun/meta/inty.hh,
* mln/fun/meta/blue.hh,
* mln/fun/meta/sat.hh,
* mln/fun/meta/to_enc.hh,
* mln/fun/meta/essential.hh,
* mln/fun/meta/first.hh,
* mln/fun/meta/all.hh,
* mln/fun/meta/red.hh,
* mln/fun/meta/second.hh,
* mln/fun/meta/lum.hh,
* mln/fun/meta/green.hh,
* mln/fun/spe/binary.hh,
* mln/fun/spe/unary.hh,
* mln/fun/cast.hh,
* mln/fun/math/cos.hh,
* mln/fun/math/abs.hh,
* mln/fun/math/sup.hh,
* mln/fun/math/norm.hh,
* mln/fun/math/inf.hh,
* mln/fun/point/row.hh,
* mln/fun/point/sli.hh,
* mln/fun/point/col.hh,
* mln/fun/v2b/essential.hh,
* mln/fun/v2b/all.hh,
* mln/fun/v2b/lnot.hh,
* mln/fun/v2b/threshold.hh,
* mln/fun/unary.hh,
* mln/fun/ops.hh,
* mln/fun/i2v/essential.hh,
* mln/fun/i2v/value_at_index.hh,
* mln/fun/i2v/all.hh,
* mln/fun/i2v/all_to.hh,
* mln/fun/i2v/array.hh,
* mln/fun/v2i/index_of_value.hh,
* mln/fun/v2i/all.hh,
* mln/fun/p2p/fold.hh,
* mln/fun/p2p/all.hh,
* mln/fun/p2p/mirror.hh,
* mln/fun/p2p/translation.hh,
* mln/fun/composition.hh,
* mln/fun/access/all.hh,
* mln/fun/access/mean.hh,
* mln/fun/vv2v/min.hh,
* mln/fun/vv2v/lxor.hh,
* mln/fun/vv2v/macros.hh,
* mln/fun/vv2v/max.hh,
* mln/fun/vv2v/essential.hh,
* mln/fun/vv2v/all.hh,
* mln/fun/vv2v/lor.hh,
* mln/fun/vv2v/diff_abs.hh,
* mln/fun/vv2v/vec.hh,
* mln/fun/vv2v/land.hh,
* mln/fun/vv2v/land_not.hh,
* mln/fun/all.hh,
* mln/fun/p2v/elifs.hh,
* mln/fun/p2v/ternary.hh,
* mln/fun/p2v/essential.hh,
* mln/fun/p2v/all.hh,
* mln/fun/p2v/iota.hh,
* mln/fun/x2p/closest_point.hh,
* mln/fun/x2p/essential.hh,
* mln/fun/x2p/all.hh,
* mln/fun/internal/ch_function_value_impl.hh,
* mln/fun/internal/x2x_linear_impl.hh,
* mln/fun/internal/resolve.hh,
* mln/fun/internal/selector.hh,
* mln/fun/unary_param.hh,
* mln/fun/v2v/hsl_to_rgb.hh,
* mln/fun/v2v/rgb_to_hsl.hh,
* mln/fun/v2v/essential.hh,
* mln/fun/v2v/saturate.hh,
* mln/fun/v2v/cast.hh,
* mln/fun/v2v/ch_function_value.hh,
* mln/fun/v2v/dec.hh,
* mln/fun/v2v/id.hh,
* mln/fun/v2v/component.hh,
* mln/fun/v2v/abs.hh,
* mln/fun/v2v/enc.hh,
* mln/fun/v2v/all.hh,
* mln/fun/v2v/wrap.hh,
* mln/fun/v2v/inc.hh,
* mln/fun/v2v/linear.hh,
* mln/fun/v2v/norm.hh,
* mln/fun/v2v/projection.hh,
* mln/fun/v2v/rgb_to_hsi.hh,
* mln/fun/v2v/hsi_to_rgb.hh,
* mln/fun/v2v/convert.hh,
* mln/fun/x2v/bilinear.hh,
* mln/fun/x2v/essential.hh,
* mln/fun/x2v/l1_norm.hh,
* mln/fun/x2v/all.hh,
* mln/fun/x2v/trilinear.hh,
* mln/fun/x2v/linear.hh,
* mln/fun/x2v/nneighbor.hh,
* mln/fun/x2x/essential.hh,
* mln/fun/x2x/all.hh,
* mln/fun/x2x/composed.hh,
* mln/fun/x2x/translation.hh,
* mln/fun/x2x/rotation.hh,
* mln/fun/binary.hh,
* mln/fun/essential.hh,
* mln/fun/from_accu.hh,
* mln/fun/param.hh,
* mln/fun/binary_param.hh,
* mln/fun/component/scomp.hh,
* mln/fun/component/ithcomp.hh,
* mln/fun/component/comp_count.hh,
* mln/fun/component/blue.hh,
* mln/fun/component/red.hh,
* mln/fun/component/rgb.hh,
* mln/fun/component/comp.hh,
* mln/fun/component/green.hh,
* mln/fun/compose.hh,
* mln/fun/accu_result.hh,
* mln/fun/stat/all.hh,
* mln/fun/stat/mahalanobis.hh,
* mln/fun/v2w_w2v/all.hh,
* mln/fun/v2w_w2v/norm.hh,
* mln/binarization/includes.hh,
* mln/binarization/essential.hh,
* mln/binarization/all.hh,
* mln/binarization/binarization.hh,
* mln/binarization/threshold.hh,
* mln/set/inter.hh,
* mln/set/compute_with_weights.hh,
* mln/set/unique.hh,
* mln/set/essential.hh,
* mln/set/all.hh,
* mln/set/diff.hh,
* mln/set/card.hh,
* mln/set/has.hh,
* mln/set/uni.hh,
* mln/set/compute.hh,
* mln/set/get.hh,
* mln/set/sym_diff.hh,
* mln/algebra/mat.hh,
* mln/algebra/h_vec.hh,
* mln/algebra/essential.hh,
* mln/algebra/all.hh,
* mln/algebra/h_mat.hh,
* mln/algebra/quat.hh,
* mln/algebra/vec.hh,
* mln/win/inter.hh,
* mln/win/multiple_size.hh,
* mln/win/hline2d.hh,
* mln/win/segment1d.hh,
* mln/win/line.hh,
* mln/win/essential.hh,
* mln/win/rectangle2d.hh,
* mln/win/diag2d.hh,
* mln/win/multiple.hh,
* mln/win/cuboid3d.hh,
* mln/win/vline2d.hh,
* mln/win/cube3d.hh,
* mln/win/diff.hh,
* mln/win/all.hh,
* mln/win/sym.hh,
* mln/win/ball.hh,
* mln/win/backdiag2d.hh,
* mln/win/shift.hh,
* mln/win/sphere3d.hh,
* mln/win/octagon2d.hh,
* mln/win/disk2d.hh,
* mln/trace/stop.hh,
* mln/trace/warning.hh,
* mln/trace/essential.hh,
* mln/trace/exiting.hh,
* mln/trace/quiet.hh,
* mln/trace/all.hh,
* mln/trace/entering.hh,
* mln/trace/resume.hh,
* mln/morpho/watershed/flooding.hh,
* mln/morpho/watershed/superpose.hh,
* mln/morpho/watershed/all.hh,
* mln/morpho/rank_filter.hh,
* mln/morpho/closing/sum.hh,
* mln/morpho/closing/leveling.hh,
* mln/morpho/closing/essential.hh,
* mln/morpho/closing/volume.hh,
* mln/morpho/closing/all.hh,
* mln/morpho/closing/area.hh,
* mln/morpho/closing/area_on_vertices.hh,
* mln/morpho/closing/height.hh,
* mln/morpho/closing/structural.hh,
* mln/morpho/closing/algebraic.hh,
* mln/morpho/closing/approx/all.hh,
* mln/morpho/closing/approx/structural.hh,
* mln/morpho/tree/compute_attribute_image.hh,
* mln/morpho/tree/propagate_representative.hh,
* mln/morpho/tree/compute_parent.hh,
* mln/morpho/tree/max.hh,
* mln/morpho/tree/filter/min.hh,
* mln/morpho/tree/filter/filter.hh,
* mln/morpho/tree/filter/max.hh,
* mln/morpho/tree/filter/all.hh,
* mln/morpho/tree/filter/direct.hh,
* mln/morpho/tree/filter/subtractive.hh,
* mln/morpho/tree/propagate_node.hh,
* mln/morpho/tree/all.hh,
* mln/morpho/tree/data.hh,
* mln/morpho/tree/utils.hh,
* mln/morpho/tree/propagate_if.hh,
* mln/morpho/line_gradient.hh,
* mln/morpho/thin_fit.hh,
* mln/morpho/attribute/sum.hh,
* mln/morpho/attribute/count_adjacent_vertices.hh,
* mln/morpho/attribute/sharpness.hh,
* mln/morpho/attribute/volume.hh,
* mln/morpho/attribute/all.hh,
* mln/morpho/attribute/height.hh,
* mln/morpho/attribute/card.hh,
* mln/morpho/elementary/like_ero_fun.hh,
* mln/morpho/elementary/dilation.hh,
* mln/morpho/elementary/laplacian.hh,
* mln/morpho/elementary/like_ero_set.hh,
* mln/morpho/elementary/essential.hh,
* mln/morpho/elementary/all.hh,
* mln/morpho/elementary/gradient_internal.hh,
* mln/morpho/elementary/gradient.hh,
* mln/morpho/elementary/closing.hh,
* mln/morpho/elementary/erosion.hh,
* mln/morpho/elementary/top_hat.hh,
* mln/morpho/elementary/gradient_external.hh,
* mln/morpho/elementary/opening.hh,
* mln/morpho/all.hh,
* mln/morpho/approx/dilation.hh,
* mln/morpho/approx/all.hh,
* mln/morpho/approx/erosion.hh,
* mln/morpho/internal/elementary.hh,
* mln/morpho/erosion.hh,
* mln/morpho/thinning.hh,
* mln/morpho/hit_or_miss.hh,
* mln/morpho/reconstruction/all.hh,
* mln/morpho/reconstruction/by_erosion/all.hh,
* mln/morpho/reconstruction/by_erosion/union_find.hh,
* mln/morpho/reconstruction/by_dilation/all.hh,
* mln/morpho/reconstruction/by_dilation/union_find.hh,
* mln/morpho/thickening.hh,
* mln/morpho/min.hh,
* mln/morpho/plus.hh,
* mln/morpho/laplacian.hh,
* mln/morpho/essential.hh,
* mln/morpho/minus.hh,
* mln/morpho/thick_miss.hh,
* mln/morpho/contrast.hh,
* mln/morpho/gradient.hh,
* mln/morpho/complementation.hh,
* mln/morpho/top_hat.hh,
* mln/morpho/opening/leveling.hh,
* mln/morpho/opening/essential.hh,
* mln/morpho/opening/volume.hh,
* mln/morpho/opening/all.hh,
* mln/morpho/opening/area.hh,
* mln/morpho/opening/area_on_vertices.hh,
* mln/morpho/opening/height.hh,
* mln/morpho/opening/structural.hh,
* mln/morpho/opening/algebraic.hh,
* mln/morpho/opening/approx/all.hh,
* mln/morpho/opening/approx/structural.hh,
* mln/morpho/dilation.hh,
* mln/morpho/general.spe.hh,
* mln/morpho/Rd.hh,
* mln/morpho/includes.hh,
* mln/morpho/leveling_filter.hh,
* mln/morpho/general.hh,
* mln/morpho/skeleton_constrained.hh,
* mln/morpho/meyer_wst.hh,
* mln/morpho/algebraic_filter.hh,
* mln/display/essential.hh,
* mln/display/all.hh,
* mln/io/txt/all.hh,
* mln/io/txt/save.hh,
* mln/io/pfm/all.hh,
* mln/io/pfm/save.hh,
* mln/io/pfm/load.hh,
* mln/io/pgm/all.hh,
* mln/io/pgm/save.hh,
* mln/io/pgm/load.hh,
* mln/io/essential.hh,
* mln/io/tiff/all.hh,
* mln/io/tiff/load.hh,
* mln/io/pnm/macros.hh,
* mln/io/pnm/save_header.hh,
* mln/io/pnm/load_header.hh,
* mln/io/pnm/max_component.hh,
* mln/io/pnm/all.hh,
* mln/io/pnm/save.hh,
* mln/io/pnm/load.hh,
* mln/io/dicom/all.hh,
* mln/io/dicom/load.hh,
* mln/io/magick/all.hh,
* mln/io/magick/save.hh,
* mln/io/magick/load.hh,
* mln/io/ppm/all.hh,
* mln/io/ppm/save.hh,
* mln/io/ppm/load.hh,
* mln/io/dump/all.hh,
* mln/io/dump/save.hh,
* mln/io/dump/load.hh,
* mln/io/abort.hh,
* mln/io/fits/all.hh,
* mln/io/fits/load.hh,
* mln/io/cloud/all.hh,
* mln/io/cloud/save.hh,
* mln/io/cloud/load.hh,
* mln/io/all.hh,
* mln/io/off/all.hh,
* mln/io/off/save.hh,
* mln/io/off/load.hh,
* mln/io/pbm/all.hh,
* mln/io/pbm/save.hh,
* mln/io/pbm/load.hh,
* mln/io/plot/all.hh,
* mln/io/plot/save.hh,
* mln/io/plot/load.hh,
* mln/logical/and.hh,
* mln/logical/and_not.hh,
* mln/logical/includes.hh,
* mln/logical/not.spe.hh,
* mln/logical/essential.hh,
* mln/logical/all.hh,
* mln/logical/xor.hh,
* mln/logical/not.hh,
* mln/logical/or.hh,
* mln/registration/get_rot.hh,
* mln/registration/essential.hh,
* mln/registration/all.hh,
* mln/registration/registration.hh,
* mln/registration/icp.hh,
* mln/registration/internal/rms.hh,
* mln/registration/get_rtransf.hh,
* mln/norm/linfty.hh,
* mln/norm/essential.hh,
* mln/norm/all.hh,
* mln/norm/l1.hh,
* mln/norm/l2.hh,
* mln/canvas/distance_front.hh,
* mln/canvas/chamfer.hh,
* mln/canvas/morpho/essential.hh,
* mln/canvas/morpho/all.hh,
* mln/canvas/morpho/attribute_filter.hh,
* mln/canvas/morpho/internal/find_root.hh,
* mln/canvas/essential.hh,
* mln/canvas/all.hh,
* mln/canvas/browsing/snake_fwd.hh,
* mln/canvas/browsing/snake_vert.hh,
* mln/canvas/browsing/dir_struct_elt_incr_update.hh,
* mln/canvas/browsing/diagonal2d.hh,
* mln/canvas/browsing/hyper_directional.hh,
* mln/canvas/browsing/backdiagonal2d.hh,
* mln/canvas/browsing/breadth_first_search.hh,
* mln/canvas/browsing/essential.hh,
* mln/canvas/browsing/all.hh,
* mln/canvas/browsing/directional.hh,
* mln/canvas/browsing/snake_generic.hh,
* mln/canvas/browsing/internal/graph_first_search.hh,
* mln/canvas/browsing/depth_first_search.hh,
* mln/canvas/browsing/fwd.hh,
* mln/canvas/distance_geodesic.hh,
* mln/canvas/labeling.hh,
* mln/extension/adjust_duplicate.hh,
* mln/extension/fill.hh,
* mln/extension/essential.hh,
* mln/extension/all.hh,
* mln/extension/adjust.hh,
* mln/extension/duplicate.hh,
* mln/extension/adjust_fill.hh,
* mln/labeling/colorize.hh,
* mln/labeling/essential.hh,
* mln/labeling/regional_minima.hh,
* mln/labeling/regional_maxima.hh,
* mln/labeling/mean_values.hh,
* mln/labeling/blobs.hh,
* mln/labeling/value.spe.hh,
* mln/labeling/n_max.hh,
* mln/labeling/flat_zones.hh,
* mln/labeling/relabel.hh,
* mln/labeling/all.hh,
* mln/labeling/wrap.hh,
* mln/labeling/foreground.hh,
* mln/labeling/value.hh,
* mln/labeling/compute.hh,
* mln/labeling/pack.hh,
* mln/labeling/background.hh,
* mln/labeling/fill_holes.hh,
* mln/util/nil.hh,
* mln/util/object_id.hh,
* mln/util/couple.hh,
* mln/util/lazy_set.hh,
* mln/util/tree.hh,
* mln/util/ord_pair.hh,
* mln/util/pix.hh,
* mln/util/yes.hh,
* mln/util/graph.hh,
* mln/util/tracked_ptr.hh,
* mln/util/greater_point.hh,
* mln/util/tree_to_image.hh,
* mln/util/line_graph.hh,
* mln/util/all.hh,
* mln/util/soft_heap.hh,
* mln/util/eat.hh,
* mln/util/branch_iter_ind.hh,
* mln/util/fibonacci_heap.hh,
* mln/util/dindex.hh,
* mln/util/tree_fast.hh,
* mln/util/internal/graph_iter.hh,
* mln/util/internal/edge_impl.hh,
* mln/util/internal/graph_nbh_iter_base.hh,
* mln/util/internal/id2element.hh,
* mln/util/internal/graph_base.hh,
* mln/util/internal/graph_nbh_iter.hh,
* mln/util/internal/graph_iter_base.hh,
* mln/util/internal/vertex_impl.hh,
* mln/util/tree_to_fast.hh,
* mln/util/array.hh,
* mln/util/site_pair.hh,
* mln/util/branch_iter.hh,
* mln/util/ignore.hh,
* mln/util/ord.hh,
* mln/util/max.hh,
* mln/util/essential.hh,
* mln/util/set.hh,
* mln/util/greater_psite.hh,
* mln/util/graph_ids.hh,
* mln/util/edge.hh,
* mln/util/adjacency_matrix.hh,
* mln/util/index.hh,
* mln/util/lemmings.hh,
* mln/util/vertex.hh,
* mln/util/multi_site.hh,
* mln/util/tree_fast_to_image.hh,
* mln/util/timer.hh,
* tools/area_flooding.cc,
* tools/seed2tiling.cc,
* tests/topo/skeleton/is_simple_point.cc,
* tests/topo/skeleton/crest.cc,
* tests/topo/complex.cc,
* tests/trait/image/images.cc,
* tests/trait/super.cc,
* tests/trait/ch_value.cc,
* tests/trait/value/comp.cc,
* tests/trait/value/values.cc,
* tests/trait/op/uminus.cc,
* tests/trait/op/plus.cc,
* tests/histo/compute.cc,
* tests/histo/point_from_value.cc,
* tests/histo/to_image1d.cc,
* tests/debug/iota.cc,
* tests/debug/println_with_border.cc,
* tests/debug/println.cc,
* tests/debug/slices_2d.cc,
* tests/all_headers.cc,
* tests/world/inter_pixel/is_separator.cc,
* tests/world/inter_pixel/compute.cc,
* tests/world/inter_pixel/is_pixel.cc,
* tests/world/inter_pixel/immerse.cc,
* tests/world/inter_pixel/separator_to_pixels.cc,
* tests/world/inter_pixel/dim2/make_edge_image.cc,
* tests/world/inter_pixel/display_edge.cc,
* tests/core/site_set/p_array.cc,
* tests/core/site_set/p_if.cc,
* tests/core/site_set/operators.cc,
* tests/core/site_set/p_queue_fast.cc,
* tests/core/site_set/p_image.cc,
* tests/core/site_set/p_transformed.cc,
* tests/core/site_set/p_vertices.cc,
* tests/core/site_set/p_queue.cc,
* tests/core/site_set/p_priority_queue.cc,
* tests/core/site_set/p_vaccess.cc,
* tests/core/site_set/p_edges.cc,
* tests/core/site_set/p_complex.cc,
* tests/core/site_set/p_set.cc,
* tests/core/other/graph_elt_neighborhood.cc,
* tests/core/other/graph_elt_window.cc,
* tests/core/other/neighb.cc,
* tests/core/other/w_window.cc,
* tests/core/other/point_set_compatibility.cc,
* tests/core/other/box_runstart_piter.cc,
* tests/core/other/pixter1d.cc,
* tests/core/other/pixter2d.cc,
* tests/core/other/pixter3d.cc,
* tests/core/other/graph_elt_window_if.cc,
* tests/core/other/graph_elt_neighborhood_if.cc,
* tests/core/other/dpoints_pixter.cc,
* tests/core/other/category.cc,
* tests/core/other/pixel.cc,
* tests/core/other/pixter1d_more.cc,
* tests/core/other/pixter2d_more.cc,
* tests/core/other/pixter3d_more.cc,
* tests/core/other/var.cc,
* tests/core/image/graph_image.cc,
* tests/core/image/plain.cc,
* tests/core/image/dmorph/sub_image.cc,
* tests/core/image/dmorph/unproject_image.cc,
* tests/core/image/dmorph/image2d_h.cc,
* tests/core/image/dmorph/image_if.cc,
* tests/core/image/dmorph/slice_image.cc,
* tests/core/image/dmorph/p2p_image.cc,
* tests/core/image/dmorph/hexa.cc,
* tests/core/image/dmorph/transformed_image.cc,
* tests/core/image/edge_image.cc,
* tests/core/image/image1d.cc,
* tests/core/image/image2d.cc,
* tests/core/image/complex_image.cc,
* tests/core/image/image3d.cc,
* tests/core/image/line_graph_image.cc,
* tests/core/image/imorph/decorated_image.cc,
* tests/core/image/imorph/safe_image.cc,
* tests/core/image/imorph/tr_image.cc,
* tests/core/image/imorph/interpolated.cc,
* tests/core/image/imorph/labeled_image.cc,
* tests/core/image/vertex_image.cc,
* tests/core/image/complex_image.hh,
* tests/core/image/vmorph/cast_image.cc,
* tests/core/image/flat_image.cc,
* tests/core/routine/initialize.cc,
* tests/core/routine/primary.cc,
* tests/core/routine/exact.cc,
* tests/core/routine/extend.cc,
* tests/core/routine/duplicate.cc,
* tests/core/alias/window1d.cc,
* tests/core/alias/w_window1d_int.cc,
* tests/core/alias/window2d.cc,
* tests/core/alias/w_window2d_int.cc,
* tests/core/alias/window3d.cc,
* tests/core/alias/w_window3d_int.cc,
* tests/core/alias/box1d.cc,
* tests/core/alias/point1d.cc,
* tests/core/alias/box2d.cc,
* tests/core/alias/point2d.cc,
* tests/core/alias/box3d.cc,
* tests/core/alias/point3d.cc,
* tests/core/alias/dpoint1d.cc,
* tests/core/alias/dpoint2d.cc,
* tests/core/alias/dpoint3d.cc,
* tests/literal/black.cc,
* tests/literal/zero.cc,
* tests/literal/white.cc,
* tests/literal/one.cc,
* tests/literal/medium_gray.cc,
* tests/draw/graph.cc,
* tests/draw/all_headers.cc,
* tests/draw/line.cc,
* tests/global_vars2.cc,
* tests/graph/labeling.cc,
* tests/graph/attribute/representative.cc,
* tests/graph/attribute/card.cc,
* tests/opt/value.cc,
* tests/opt/at.cc,
* tests/opt/element.cc,
* tests/metal/is.cc,
* tests/metal/math/root.cc,
* tests/metal/math/pow.cc,
* tests/metal/converts_to.cc,
* tests/metal/unconst.cc,
* tests/essential_headers.cc,
* tests/transformation/rotate.cc,
* tests/arith/minus.cc,
* tests/arith/diff_abs.cc,
* tests/arith/minus_full.cc,
* tests/arith/times.cc,
* tests/arith/all_headers.cc,
* tests/arith/plus.cc,
* tests/arith/times_full.cc,
* tests/arith/plus_full.cc,
* tests/arith/revert.cc,
* tests/arith/revert_full.cc,
* tests/data/transform_full.cc,
* tests/data/median.cc,
* tests/data/compute_full.cc,
* tests/data/all_headers.cc,
* tests/data/abs.cc,
* tests/data/transform_inplace.cc,
* tests/data/apply_full.cc,
* tests/data/fill_full.cc,
* tests/data/median_fast.cc,
* tests/data/compute.cc,
* tests/data/sort_psites.cc,
* tests/data/convert.cc,
* tests/data/update.cc,
* tests/data/fill_with_image.cc,
* tests/data/approx/median.cc,
* tests/data/fill.cc,
* tests/data/abs_full.cc,
* tests/data/memcpy_.cc,
* tests/data/stretch_full.cc,
* tests/data/paste_full.cc,
* tests/data/compare_full.cc,
* tests/data/saturate_full.cc,
* tests/data/replace.cc,
* tests/data/transform.cc,
* tests/data/stretch.cc,
* tests/data/paste.cc,
* tests/data/fill_with_value.cc,
* tests/data/naive/median.cc,
* tests/data/apply.cc,
* tests/data/compare.cc,
* tests/data/saturate.cc,
* tests/data/memset_.cc,
* tests/extract/green.cc,
* tests/extract/blue.cc,
* tests/extract/red.cc,
* tests/linear/convolve.cc,
* tests/linear/lap.cc,
* tests/linear/log.cc,
* tests/linear/local/convolve.cc,
* tests/linear/gaussian/filter.cc,
* tests/linear/convolve_directional.cc,
* tests/linear/convolve_2x1d.cc,
* tests/linear/sobel_2d.cc,
* tests/linear/gaussian.cc,
* tests/transform/influence_zone_front.cc,
* tests/transform/distance_geodesic.cc,
* tests/transform/distance_front.cc,
* tests/transform/distance_and_closest_point_geodesic.cc,
* tests/transform/influence_zone_geodesic.cc,
* tests/transform/bench_closest_point_geodesic.cc,
* tests/transform/hough.cc,
* tests/accu/site_set/rectangularity.cc,
* tests/accu/pair.cc,
* tests/accu/rank.cc,
* tests/accu/max_h.cc,
* tests/accu/transform_snake.cc,
* tests/accu/image/to_result.cc,
* tests/accu/image/take_n_times.cc,
* tests/accu/image/init.cc,
* tests/accu/image/take.cc,
* tests/accu/image/set_value.cc,
* tests/accu/image/untake.cc,
* tests/accu/image/take_as_init.cc,
* tests/accu/median_h.cc,
* tests/accu/transform_diagonal.cc,
* tests/accu/max_site.cc,
* tests/accu/transform.cc,
* tests/accu/compute.cc,
* tests/accu/mean.cc,
* tests/accu/nil.cc,
* tests/accu/transform_line.cc,
* tests/accu/min.cc,
* tests/accu/max.cc,
* tests/accu/histo.cc,
* tests/accu/all_accus.cc,
* tests/accu/line.cc,
* tests/accu/stat/var.cc,
* tests/accu/min_max.cc,
* tests/accu/count.cc,
* tests/accu/transform_directional.cc,
* tests/accu/tuple.cc,
* tests/accu/min_h.cc,
* tests/accu/bbox.cc,
* tests/value/set.cc,
* tests/value/bool.cc,
* tests/value/rgb_full.cc,
* tests/value/macros.hh,
* tests/value/graylevel_f.cc,
* tests/value/sign.cc,
* tests/value/rgb8.cc,
* tests/value/float01_bis.cc,
* tests/value/stack.cc,
* tests/value/scalar.cc,
* tests/value/float01.cc,
* tests/value/int_u8.cc,
* tests/value/float01_f.cc,
* tests/value/int_s.cc,
* tests/value/graylevel_full.cc,
* tests/value/label.cc,
* tests/value/interop.cc,
* tests/value/graylevel_f_full.cc,
* tests/value/builtin/builtin.cc,
* tests/value/int_s16.cc,
* tests/value/equiv.cc,
* tests/value/graylevel.cc,
* tests/border/mirror_full.cc,
* tests/border/duplicate_full.cc,
* tests/border/get_full.cc,
* tests/border/equalize_full.cc,
* tests/border/resize.cc,
* tests/border/find_full.cc,
* tests/border/all_headers.cc,
* tests/border/fill_full.cc,
* tests/border/resize_image1d_1.cc,
* tests/border/resize_image1d_2.cc,
* tests/border/resize_image2d_1.cc,
* tests/border/mirror.cc,
* tests/border/duplicate.cc,
* tests/border/resize_image1d_3.cc,
* tests/border/resize_image2d_2.cc,
* tests/border/resize_image3d_1.cc,
* tests/border/resize_image2d_3.cc,
* tests/border/resize_image3d_2.cc,
* tests/border/adjust_full.cc,
* tests/border/resize_image3d_3.cc,
* tests/border/resize_sub_image.cc,
* tests/border/get.cc,
* tests/border/equalize.cc,
* tests/border/find.cc,
* tests/border/resize_image_if.cc,
* tests/border/resize_full.cc,
* tests/border/fill.cc,
* tests/border/resize_equal.cc,
* tests/border/adjust.cc,
* tests/make/w_window.cc,
* tests/make/dual_neighb.cc,
* tests/make/p_vertices_with_mass_centers.cc,
* tests/make/region_adjacency_graph.cc,
* tests/make/p_edges_with_mass_centers.cc,
* tests/make/image2d.cc,
* tests/make/image3d.cc,
* tests/make/w_window_directional.cc,
* tests/make/dummy_p_vertices.cc,
* tests/make/dummy_p_edges.cc,
* tests/make/mat.cc,
* tests/make/influence_zone_adjacency_graph.cc,
* tests/make/rag_and_labeled_wsl.cc,
* tests/make/h_mat.cc,
* tests/test/positive.cc,
* tests/convert/to_p_set.cc,
* tests/convert/to_rgb.cc,
* tests/convert/impl/from_site_set_to_image.cc,
* tests/convert/to_p_array.cc,
* tests/convert/to_image.cc,
* tests/convert/to_hsl.cc,
* tests/convert/to_window.cc,
* tests/estim/mean.cc,
* tests/estim/min_max.cc,
* tests/pw/value.cc,
* tests/pw/image.cc,
* tests/geom/max_sli.cc,
* tests/geom/nsites.cc,
* tests/geom/nrows.cc,
* tests/geom/seed2tiling_roundness.cc,
* tests/geom/seed2tiling.cc,
* tests/geom/min_row.cc,
* tests/geom/ninds.cc,
* tests/geom/max_row.cc,
* tests/geom/min_ind.cc,
* tests/geom/ncols.cc,
* tests/geom/max_ind.cc,
* tests/geom/min_col.cc,
* tests/geom/max_col.cc,
* tests/geom/pmin_pmax.cc,
* tests/geom/nslis.cc,
* tests/geom/min_sli.cc,
* tests/geom/bbox.cc,
* tests/fun/i2v/array.cc,
* tests/fun/i2v/value_at_index.cc,
* tests/fun/i2v/all_to.cc,
* tests/fun/v2i/index_of_value.cc,
* tests/fun/x2x/translation.cc,
* tests/fun/x2x/rotation.cc,
* tests/fun/x2x/composed.cc,
* tests/fun/p2p/translation.cc,
* tests/fun/p2p/fold.cc,
* tests/fun/vv2v/min.cc,
* tests/fun/vv2v/max.cc,
* tests/fun/ops.cc,
* tests/fun/stat/mahalanobis.cc,
* tests/fun/v2v/norm.cc,
* tests/fun/v2v/projection.cc,
* tests/fun/v2v/component.cc,
* tests/fun/v2v/hsl_to_rgb.cc,
* tests/fun/v2v/rgb_to_hsl.cc,
* tests/fun/v2v/wrap.cc,
* tests/binarization/threshold.cc,
* tests/set/uni.cc,
* tests/set/compute.cc,
* tests/set/sym_diff.cc,
* tests/set/inter.cc,
* tests/set/compute_with_weights.cc,
* tests/set/unique.cc,
* tests/set/diff.cc,
* tests/set/card.cc,
* tests/win/cuboid3d.cc,
* tests/win/vline2d.cc,
* tests/win/cube3d.cc,
* tests/win/diff.cc,
* tests/win/sym.cc,
* tests/win/ball.cc,
* tests/win/backdiag2d.cc,
* tests/win/sphere3d.cc,
* tests/win/shift.cc,
* tests/win/disk2d.cc,
* tests/win/octagon2d.cc,
* tests/win/inter.cc,
* tests/win/hline2d.cc,
* tests/win/segment1d.cc,
* tests/win/rectangle2d.cc,
* tests/win/diag2d.cc,
* tests/algebra/vec.cc,
* tests/algebra/vec2.cc,
* tests/algebra/op_times.cc,
* tests/algebra/mat.cc,
* tests/algebra/mat2.cc,
* tests/algebra/h_vec.cc,
* tests/algebra/h_mat.cc,
* tests/algebra/quat.cc,
* tests/global_vars1.cc,
* tests/morpho/gradient.cc,
* tests/morpho/contrast.cc,
* tests/morpho/artificial_line_graph_image_wst.cc,
* tests/morpho/top_hat.cc,
* tests/morpho/graph_image_wst.cc,
* tests/morpho/watershed/flooding.cc,
* tests/morpho/watershed/superpose.cc,
* tests/morpho/dilation.cc,
* tests/morpho/Rd.cc,
* tests/morpho/line_graph_image_wst.cc,
* tests/morpho/closing/sum.cc,
* tests/morpho/closing/approx/structural.cc,
* tests/morpho/closing/leveling.cc,
* tests/morpho/closing/volume.cc,
* tests/morpho/closing/area.cc,
* tests/morpho/closing/height.cc,
* tests/morpho/closing/structural.cc,
* tests/morpho/closing/area_on_vertices.cc,
* tests/morpho/closing/algebraic.cc,
* tests/morpho/tree/compute_attribute_image.cc,
* tests/morpho/tree/filter/filter.cc,
* tests/morpho/tree/compute_parent.cc,
* tests/morpho/tree/max.cc,
* tests/morpho/tree/data.cc,
* tests/morpho/general.cc,
* tests/morpho/skeleton_constrained.cc,
* tests/morpho/meyer_wst.cc,
* tests/morpho/attribute/sum.cc,
* tests/morpho/attribute/volume.cc,
* tests/morpho/attribute/height.cc,
* tests/morpho/attribute/card.cc,
* tests/morpho/elementary/gradient.cc,
* tests/morpho/elementary/closing.cc,
* tests/morpho/elementary/erosion.cc,
* tests/morpho/elementary/top_hat.cc,
* tests/morpho/elementary/gradient_external.cc,
* tests/morpho/elementary/opening.cc,
* tests/morpho/elementary/dilation.cc,
* tests/morpho/elementary/laplacian.cc,
* tests/morpho/elementary/gradient_internal.cc,
* tests/morpho/approx/erosion.cc,
* tests/morpho/approx/dilation.cc,
* tests/morpho/lena_line_graph_image_wst1.cc,
* tests/morpho/reconstruction/by_erosion/union_find.cc,
* tests/morpho/reconstruction/by_dilation/union_find.cc,
* tests/morpho/complex_image_morpho.cc,
* tests/morpho/meyer_wst_long.cc,
* tests/morpho/line_graph_image_morpho.cc,
* tests/morpho/rank_filter.cc,
* tests/morpho/complex_image_wst.cc,
* tests/morpho/opening/sum.cc,
* tests/morpho/opening/approx/structural.cc,
* tests/morpho/opening/leveling.cc,
* tests/morpho/opening/volume.cc,
* tests/morpho/opening/area.cc,
* tests/morpho/opening/height.cc,
* tests/morpho/opening/structural.cc,
* tests/morpho/opening/area_on_vertices.cc,
* tests/morpho/opening/algebraic.cc,
* tests/morpho/thinning.cc,
* tests/morpho/erosion.cc,
* tests/morpho/hit_or_miss.cc,
* tests/morpho/laplacian.cc,
* tests/morpho/graph_image_morpho.cc,
* tests/morpho/lena_line_graph_image_wst2.cc,
* tests/display/all_headers.cc,
* tests/io/pgm/pgm_ascii.cc,
* tests/io/pgm/pgm27.cc,
* tests/io/pgm/pgm19.cc,
* tests/io/pgm/pgm.cc,
* tests/io/pgm/pgm16.cc,
* tests/io/fits/fits.cc,
* tests/io/dump/dump.cc,
* tests/io/tiff/load.cc,
* tests/io/off/load_float.cc,
* tests/io/off/load_save_bin.cc,
* tests/io/off/load_bin.cc,
* tests/io/dicom/dicom.cc,
* tests/io/magick/save.cc,
* tests/io/magick/load.cc,
* tests/io/ppm/ppm.cc,
* tests/io/ppm/ppm23.cc,
* tests/io/ppm/ppm16.cc,
* tests/io/pbm/pbm.cc,
* tests/io/pbm/pbm_ascii.cc,
* tests/logical/not.cc,
* tests/logical/or.cc,
* tests/logical/and.cc,
* tests/logical/and_not.cc,
* tests/logical/all_headers.cc,
* tests/logical/xor.cc,
* tests/registration/registration.cc,
* tests/canvas/morpho/attribute_filter.cc,
* tests/canvas/chamfer.cc,
* tests/canvas/browsing/fwd.cc,
* tests/canvas/browsing/depth_first_search.cc,
* tests/canvas/browsing/snake_fwd.cc,
* tests/canvas/browsing/snake_vert.cc,
* tests/canvas/browsing/snake_generic_2d_vert.cc,
* tests/canvas/browsing/dir_struct_elt_incr_update.cc,
* tests/canvas/browsing/snake_generic_2d_hori.cc,
* tests/canvas/browsing/snake_generic_3d_vert.cc,
* tests/canvas/browsing/diagonal2d.cc,
* tests/canvas/browsing/hyper_directional.cc,
* tests/canvas/browsing/snake_generic_3d_hori.cc,
* tests/canvas/browsing/backdiagonal2d.cc,
* tests/canvas/browsing/breadth_first_search.cc,
* tests/norm/l1.cc,
* tests/norm/l2.cc,
* tests/norm/common.hh,
* tests/norm/linfty.cc,
* tests/extension/fill.cc,
* tests/labeling/regional_maxima.cc,
* tests/labeling/mean_values.cc,
* tests/labeling/blobs.cc,
* tests/labeling/n_max.cc,
* tests/labeling/flat_zones.cc,
* tests/labeling/relabel.cc,
* tests/labeling/wrap.cc,
* tests/labeling/foreground.cc,
* tests/labeling/compute.cc,
* tests/labeling/value.cc,
* tests/labeling/pack.cc,
* tests/labeling/background.cc,
* tests/labeling/fill_holes.cc,
* tests/labeling/colorize.cc,
* tests/labeling/regional_minima.cc,
* tests/util/set.cc,
* tests/util/tree.cc,
* tests/util/ord_pair.cc,
* tests/util/yes.cc,
* tests/util/graph.cc,
* tests/util/all_headers.cc,
* tests/util/tree_to_image.cc,
* tests/util/adjacency_matrix.cc,
* tests/util/line_graph.cc,
* tests/util/soft_heap.cc,
* tests/util/eat.cc,
* tests/util/branch_iter_ind.cc,
* tests/util/fibonacci_heap.cc,
* tests/util/lemmings.cc,
* tests/util/tree_fast.cc,
* tests/util/tree_to_fast.cc,
* tests/util/tree_fast_to_image.cc,
* tests/util/branch_iter.cc,
* tests/util/lazy_set.cc,
* tests/timer.hh,
* apps/statues/mesh-max-curv.cc,
* apps/statues/mesh-complex-skel.cc,
* apps/statues/save_bin_alt.hh,
* apps/statues/mesh-complex-max-curv.cc,
* apps/statues/io.hh,
* apps/statues/mesh-pinv-curv.cc,
* apps/statues/mesh-segm.cc,
* apps/statues/trimesh/misc.hh,
* apps/statues/mesh-skel.cc,
* apps/statues/mesh-complex-segm.cc,
* apps/statues/mesh-complex-max-curv-segm.cc,
* doc/oldies/2008__tour1.cc,
* doc/oldies/2008__tour2.cc,
* doc/oldies/2008__tour3.cc,
* doc/oldies/2008__tour1_extra.cc,
* doc/benchmark/canvas.cc,
* doc/benchmark/morpho/erosion.cc,
* doc/benchmark/median/median_bench.cc,
* doc/tools/sample_utils.hh,
* doc/examples/trash/labeling_algo.cc,
* doc/examples/trash/graph.cc,
* doc/examples/trash/erosion.cc,
* doc/examples/trash/mk_graph.cc
(copyright): Fix the library name.
apps/statues/io.hh | 2 +-
apps/statues/mesh-complex-max-curv-segm.cc | 2 +-
apps/statues/mesh-complex-max-curv.cc | 2 +-
apps/statues/mesh-complex-segm.cc | 2 +-
apps/statues/mesh-complex-skel.cc | 2 +-
apps/statues/mesh-max-curv.cc | 2 +-
apps/statues/mesh-pinv-curv.cc | 2 +-
apps/statues/mesh-segm.cc | 2 +-
apps/statues/mesh-skel.cc | 2 +-
apps/statues/save_bin_alt.hh | 2 +-
apps/statues/trimesh/misc.hh | 2 +-
doc/benchmark/canvas.cc | 2 +-
doc/benchmark/median/median_bench.cc | 2 +-
doc/benchmark/morpho/erosion.cc | 2 +-
doc/examples/trash/erosion.cc | 2 +-
doc/examples/trash/graph.cc | 2 +-
doc/examples/trash/labeling_algo.cc | 2 +-
doc/examples/trash/mk_graph.cc | 2 +-
doc/oldies/2008__tour1.cc | 2 +-
doc/oldies/2008__tour1_extra.cc | 2 +-
doc/oldies/2008__tour2.cc | 2 +-
doc/oldies/2008__tour3.cc | 2 +-
doc/tools/sample_utils.hh | 2 +-
mln/accu/all.hh | 2 +-
mln/accu/bbox.hh | 2 +-
mln/accu/center.hh | 2 +-
mln/accu/compute.hh | 2 +-
mln/accu/convolve.hh | 2 +-
mln/accu/count.hh | 2 +-
mln/accu/count_adjacent_vertices.hh | 2 +-
mln/accu/count_labels.hh | 2 +-
mln/accu/essential.hh | 2 +-
mln/accu/height.hh | 2 +-
mln/accu/histo.hh | 2 +-
mln/accu/image/all.hh | 2 +-
mln/accu/image/essential.hh | 2 +-
mln/accu/image/init.hh | 2 +-
mln/accu/image/set_value.hh | 2 +-
mln/accu/image/take.hh | 2 +-
mln/accu/image/take_as_init.hh | 2 +-
mln/accu/image/take_n_times.hh | 2 +-
mln/accu/image/to_result.hh | 2 +-
mln/accu/image/untake.hh | 2 +-
mln/accu/inf.hh | 2 +-
mln/accu/internal/base.hh | 2 +-
mln/accu/internal/couple.hh | 2 +-
mln/accu/label_used.hh | 2 +-
mln/accu/land.hh | 2 +-
mln/accu/land_basic.hh | 2 +-
mln/accu/line.hh | 2 +-
mln/accu/lor.hh | 2 +-
mln/accu/lor_basic.hh | 2 +-
mln/accu/maj_h.hh | 2 +-
mln/accu/max.hh | 2 +-
mln/accu/max_h.hh | 2 +-
mln/accu/max_site.hh | 2 +-
mln/accu/mean.hh | 2 +-
mln/accu/median_alt.hh | 2 +-
mln/accu/median_h.hh | 2 +-
mln/accu/min.hh | 2 +-
mln/accu/min_h.hh | 2 +-
mln/accu/min_max.hh | 2 +-
mln/accu/nil.hh | 2 +-
mln/accu/p.hh | 2 +-
mln/accu/pair.hh | 2 +-
mln/accu/rank.hh | 2 +-
mln/accu/rank_bool.hh | 2 +-
mln/accu/rank_high_quant.hh | 2 +-
mln/accu/rms.hh | 2 +-
mln/accu/site_set/all.hh | 2 +-
mln/accu/site_set/essential.hh | 2 +-
mln/accu/site_set/rectangularity.hh | 2 +-
mln/accu/stat/all.hh | 2 +-
mln/accu/stat/deviation.hh | 2 +-
mln/accu/stat/var.hh | 2 +-
mln/accu/stat/variance.hh | 2 +-
mln/accu/sum.hh | 2 +-
mln/accu/sup.hh | 2 +-
mln/accu/take.hh | 2 +-
mln/accu/transform.hh | 2 +-
mln/accu/transform_diagonal.hh | 2 +-
mln/accu/transform_directional.hh | 2 +-
mln/accu/transform_line.hh | 2 +-
mln/accu/transform_snake.hh | 2 +-
mln/accu/transform_stop.hh | 2 +-
mln/accu/tuple.hh | 2 +-
mln/accu/v.hh | 2 +-
mln/accu/volume.hh | 2 +-
mln/algebra/all.hh | 2 +-
mln/algebra/essential.hh | 2 +-
mln/algebra/h_mat.hh | 2 +-
mln/algebra/h_vec.hh | 2 +-
mln/algebra/mat.hh | 2 +-
mln/algebra/quat.hh | 2 +-
mln/algebra/vec.hh | 2 +-
mln/all.hh | 2 +-
mln/arith/all.hh | 2 +-
mln/arith/diff_abs.hh | 2 +-
mln/arith/div.hh | 2 +-
mln/arith/div.spe.hh | 2 +-
mln/arith/essential.hh | 2 +-
mln/arith/includes.hh | 2 +-
mln/arith/min.hh | 2 +-
mln/arith/min.spe.hh | 2 +-
mln/arith/minus.hh | 2 +-
mln/arith/plus.hh | 2 +-
mln/arith/revert.hh | 2 +-
mln/arith/revert.spe.hh | 2 +-
mln/arith/times.hh | 2 +-
mln/arith/times.spe.hh | 2 +-
mln/binarization/all.hh | 2 +-
mln/binarization/binarization.hh | 2 +-
mln/binarization/essential.hh | 2 +-
mln/binarization/includes.hh | 2 +-
mln/binarization/threshold.hh | 2 +-
mln/border/adjust.hh | 2 +-
mln/border/all.hh | 2 +-
mln/border/duplicate.hh | 2 +-
mln/border/equalize.hh | 2 +-
mln/border/essential.hh | 2 +-
mln/border/fill.hh | 2 +-
mln/border/find.hh | 2 +-
mln/border/get.hh | 2 +-
mln/border/mirror.hh | 2 +-
mln/border/resize.hh | 2 +-
mln/border/resize_equal.hh | 2 +-
mln/border/thickness.hh | 2 +-
mln/canvas/all.hh | 2 +-
mln/canvas/browsing/all.hh | 2 +-
mln/canvas/browsing/backdiagonal2d.hh | 2 +-
mln/canvas/browsing/breadth_first_search.hh | 2 +-
mln/canvas/browsing/depth_first_search.hh | 2 +-
mln/canvas/browsing/diagonal2d.hh | 2 +-
mln/canvas/browsing/dir_struct_elt_incr_update.hh | 2 +-
mln/canvas/browsing/directional.hh | 2 +-
mln/canvas/browsing/essential.hh | 2 +-
mln/canvas/browsing/fwd.hh | 2 +-
mln/canvas/browsing/hyper_directional.hh | 2 +-
mln/canvas/browsing/internal/graph_first_search.hh | 2 +-
mln/canvas/browsing/snake_fwd.hh | 2 +-
mln/canvas/browsing/snake_generic.hh | 2 +-
mln/canvas/browsing/snake_vert.hh | 2 +-
mln/canvas/chamfer.hh | 2 +-
mln/canvas/distance_front.hh | 2 +-
mln/canvas/distance_geodesic.hh | 2 +-
mln/canvas/essential.hh | 2 +-
mln/canvas/labeling.hh | 2 +-
mln/canvas/morpho/all.hh | 2 +-
mln/canvas/morpho/attribute_filter.hh | 2 +-
mln/canvas/morpho/essential.hh | 2 +-
mln/canvas/morpho/internal/find_root.hh | 2 +-
mln/convert/all.hh | 2 +-
mln/convert/essential.hh | 2 +-
mln/convert/from_to.hh | 2 +-
mln/convert/from_to.hxx | 2 +-
mln/convert/impl/all.hh | 2 +-
mln/convert/impl/from_double_to_value.hh | 2 +-
mln/convert/impl/from_float_to_value.hh | 2 +-
mln/convert/impl/from_image_to_site_set.hh | 2 +-
mln/convert/impl/from_int_to_value.hh | 2 +-
mln/convert/impl/from_site_set_to_image.hh | 2 +-
mln/convert/impl/from_unsigned_to_value.hh | 2 +-
mln/convert/impl/from_value_to_value.hh | 2 +-
mln/convert/to.hh | 2 +-
mln/convert/to_dpoint.hh | 2 +-
mln/convert/to_fun.hh | 2 +-
mln/convert/to_image.hh | 2 +-
mln/convert/to_p_array.hh | 2 +-
mln/convert/to_p_set.hh | 2 +-
mln/convert/to_upper_window.hh | 2 +-
mln/convert/to_window.hh | 2 +-
mln/core/a_point_of.hh | 2 +-
mln/core/alias/all.hh | 2 +-
mln/core/alias/box1d.hh | 2 +-
mln/core/alias/box2d.hh | 2 +-
mln/core/alias/box2d_h.hh | 2 +-
mln/core/alias/box3d.hh | 2 +-
mln/core/alias/complex_geometry.hh | 2 +-
mln/core/alias/complex_image.hh | 2 +-
mln/core/alias/dpoint1d.hh | 2 +-
mln/core/alias/dpoint2d.hh | 2 +-
mln/core/alias/dpoint2d_h.hh | 2 +-
mln/core/alias/dpoint3d.hh | 2 +-
mln/core/alias/neighb1d.hh | 2 +-
mln/core/alias/neighb2d.hh | 2 +-
mln/core/alias/neighb3d.hh | 2 +-
mln/core/alias/p_run2d.hh | 2 +-
mln/core/alias/p_runs2d.hh | 2 +-
mln/core/alias/point1d.hh | 2 +-
mln/core/alias/point2d.hh | 2 +-
mln/core/alias/point2d_h.hh | 2 +-
mln/core/alias/point3d.hh | 2 +-
mln/core/alias/vec2d.hh | 2 +-
mln/core/alias/vec3d.hh | 2 +-
mln/core/alias/w_window1d_float.hh | 2 +-
mln/core/alias/w_window1d_int.hh | 2 +-
mln/core/alias/w_window2d_float.hh | 2 +-
mln/core/alias/w_window2d_int.hh | 2 +-
mln/core/alias/w_window3d_float.hh | 2 +-
mln/core/alias/w_window3d_int.hh | 2 +-
mln/core/alias/window1d.hh | 2 +-
mln/core/alias/window2d.hh | 2 +-
mln/core/alias/window3d.hh | 2 +-
mln/core/all.hh | 2 +-
mln/core/box_runstart_piter.hh | 2 +-
mln/core/category.hh | 2 +-
mln/core/concept/accumulator.hh | 2 +-
mln/core/concept/all.hh | 2 +-
mln/core/concept/box.hh | 2 +-
mln/core/concept/browsing.hh | 2 +-
mln/core/concept/delta_point_site.hh | 2 +-
mln/core/concept/doc/accumulator.hh | 2 +-
mln/core/concept/doc/box.hh | 2 +-
mln/core/concept/doc/dpoint.hh | 2 +-
mln/core/concept/doc/generalized_pixel.hh | 2 +-
mln/core/concept/doc/image.hh | 2 +-
mln/core/concept/doc/image_fastest.hh | 2 +-
mln/core/concept/doc/iterator.hh | 2 +-
mln/core/concept/doc/neighborhood.hh | 2 +-
mln/core/concept/doc/object.hh | 2 +-
mln/core/concept/doc/pixel_iterator.hh | 2 +-
mln/core/concept/doc/point_iterator.hh | 2 +-
mln/core/concept/doc/point_site.hh | 2 +-
mln/core/concept/doc/site_set.hh | 2 +-
mln/core/concept/doc/value_iterator.hh | 2 +-
mln/core/concept/doc/value_set.hh | 2 +-
mln/core/concept/doc/weighted_window.hh | 2 +-
mln/core/concept/doc/window.hh | 2 +-
mln/core/concept/dpoint.hh | 2 +-
mln/core/concept/function.hh | 2 +-
mln/core/concept/gdpoint.hh | 2 +-
mln/core/concept/generalized_pixel.hh | 2 +-
mln/core/concept/gpoint.hh | 2 +-
mln/core/concept/graph.hh | 2 +-
mln/core/concept/image.hh | 2 +-
mln/core/concept/iterator.hh | 2 +-
mln/core/concept/literal.hh | 2 +-
mln/core/concept/mesh.hh | 2 +-
mln/core/concept/meta_accumulator.hh | 2 +-
mln/core/concept/meta_fun.hh | 2 +-
mln/core/concept/meta_function.hh | 2 +-
mln/core/concept/neighborhood.hh | 2 +-
mln/core/concept/object.hh | 4 ++--
mln/core/concept/pixel_iterator.hh | 2 +-
mln/core/concept/point.hh | 2 +-
mln/core/concept/point_site.hh | 2 +-
mln/core/concept/proxy.hh | 2 +-
mln/core/concept/proxy.hxx | 2 +-
mln/core/concept/pseudo_site.hh | 2 +-
mln/core/concept/regular_grid.hh | 2 +-
mln/core/concept/site.hh | 2 +-
mln/core/concept/site_iterator.hh | 2 +-
mln/core/concept/site_proxy.hh | 2 +-
mln/core/concept/site_set.hh | 2 +-
mln/core/concept/value.hh | 2 +-
mln/core/concept/value_iterator.hh | 2 +-
mln/core/concept/value_set.hh | 2 +-
mln/core/concept/weighted_window.hh | 2 +-
mln/core/concept/window.hh | 2 +-
mln/core/contract.hh | 2 +-
mln/core/def/all.hh | 2 +-
mln/core/def/coord.hh | 2 +-
mln/core/def/coordf.hh | 2 +-
mln/core/def/essential.hh | 2 +-
mln/core/def/low_quant_nbits.hh | 2 +-
mln/core/dpoint.hh | 2 +-
mln/core/dpoints_pixter.hh | 2 +-
mln/core/dpsites_piter.hh | 2 +-
mln/core/essential.hh | 2 +-
mln/core/faces_psite.hh | 2 +-
mln/core/grids.hh | 2 +-
mln/core/image/all.hh | 2 +-
mln/core/image/ch_piter.hh | 2 +-
mln/core/image/complex_image.hh | 2 +-
mln/core/image/complex_neighborhood_piter.hh | 2 +-
mln/core/image/complex_neighborhoods.hh | 2 +-
mln/core/image/complex_window_piter.hh | 2 +-
mln/core/image/complex_windows.hh | 2 +-
mln/core/image/dmorph/all.hh | 2 +-
mln/core/image/dmorph/extended.hh | 2 +-
mln/core/image/dmorph/extension_fun.hh | 2 +-
mln/core/image/dmorph/extension_ima.hh | 2 +-
mln/core/image/dmorph/extension_val.hh | 2 +-
mln/core/image/dmorph/hexa.hh | 2 +-
mln/core/image/dmorph/hexa_piter.hh | 2 +-
mln/core/image/dmorph/image2d_h.hh | 2 +-
mln/core/image/dmorph/image_if.hh | 2 +-
mln/core/image/dmorph/p2p_image.hh | 2 +-
mln/core/image/dmorph/slice_image.hh | 2 +-
mln/core/image/dmorph/sub_image.hh | 2 +-
mln/core/image/dmorph/sub_image_if.hh | 2 +-
mln/core/image/dmorph/transformed_image.hh | 2 +-
mln/core/image/dmorph/unproject_image.hh | 2 +-
mln/core/image/edge_image.hh | 2 +-
mln/core/image/essential.hh | 2 +-
mln/core/image/flat_image.hh | 2 +-
mln/core/image/graph_elt_neighborhood.hh | 2 +-
mln/core/image/graph_elt_neighborhood_if.hh | 2 +-
mln/core/image/graph_elt_window.hh | 2 +-
mln/core/image/graph_elt_window_if.hh | 2 +-
mln/core/image/graph_window_if_piter.hh | 2 +-
mln/core/image/graph_window_piter.hh | 2 +-
mln/core/image/image1d.hh | 2 +-
mln/core/image/image2d.hh | 2 +-
mln/core/image/image3d.hh | 2 +-
mln/core/image/imorph/all.hh | 2 +-
mln/core/image/imorph/decorated_image.hh | 2 +-
mln/core/image/imorph/interpolated.hh | 2 +-
mln/core/image/imorph/labeled_image.hh | 2 +-
mln/core/image/imorph/lazy_image.hh | 2 +-
mln/core/image/imorph/plain.hh | 2 +-
mln/core/image/imorph/safe.hh | 2 +-
mln/core/image/imorph/tr_image.hh | 2 +-
mln/core/image/vertex_image.hh | 2 +-
mln/core/image/vmorph/all.hh | 2 +-
mln/core/image/vmorph/cast_image.hh | 2 +-
mln/core/image/vmorph/fun_image.hh | 2 +-
mln/core/image/vmorph/thru_image.hh | 2 +-
mln/core/image/vmorph/thrubin_image.hh | 2 +-
mln/core/image/vmorph/violent_cast_image.hh | 2 +-
mln/core/internal/box_impl.hh | 2 +-
mln/core/internal/check/image_all.hh | 2 +-
mln/core/internal/check/image_fastest.hh | 2 +-
mln/core/internal/classical_window_base.hh | 2 +-
mln/core/internal/complex_neighborhood_base.hh | 2 +-
mln/core/internal/complex_window_p_base.hh | 2 +-
mln/core/internal/coord_impl.hh | 2 +-
mln/core/internal/data.hh | 2 +-
mln/core/internal/exact.hh | 2 +-
mln/core/internal/exact_gcc_2_95.hh | 2 +-
mln/core/internal/fixme.hh | 2 +-
mln/core/internal/force_exact.hh | 2 +-
mln/core/internal/geom_bbox.hh | 2 +-
mln/core/internal/graph_psite_base.hh | 2 +-
mln/core/internal/graph_window_base.hh | 2 +-
mln/core/internal/image_base.hh | 2 +-
mln/core/internal/image_domain_morpher.hh | 2 +-
mln/core/internal/image_identity.hh | 2 +-
mln/core/internal/image_morpher.hh | 2 +-
mln/core/internal/image_primary.hh | 2 +-
mln/core/internal/image_value_morpher.hh | 2 +-
mln/core/internal/is_masked_impl_selector.hh | 2 +-
mln/core/internal/morpher_lvalue.hh | 2 +-
mln/core/internal/neighb_niter_impl.hh | 2 +-
mln/core/internal/neighborhood_base.hh | 2 +-
mln/core/internal/p_complex_piter_base.hh | 2 +-
mln/core/internal/piter_adaptor.hh | 2 +-
mln/core/internal/piter_identity.hh | 2 +-
mln/core/internal/pixel_impl.hh | 2 +-
mln/core/internal/pixel_iterator_base.hh | 2 +-
mln/core/internal/pseudo_site_base.hh | 2 +-
mln/core/internal/run_image.hh | 2 +-
mln/core/internal/set_of.hh | 2 +-
mln/core/internal/site_iterator_base.hh | 2 +-
mln/core/internal/site_relative_iterator_base.hh | 2 +-
mln/core/internal/site_set_base.hh | 2 +-
mln/core/internal/site_set_impl.hh | 2 +-
mln/core/internal/site_set_iterator_base.hh | 2 +-
mln/core/internal/weighted_window_base.hh | 2 +-
mln/core/internal/window_base.hh | 2 +-
mln/core/macros.hh | 2 +-
mln/core/neighb.hh | 2 +-
mln/core/pixel.hh | 2 +-
mln/core/pixter1d.hh | 2 +-
mln/core/pixter2d.hh | 2 +-
mln/core/pixter3d.hh | 2 +-
mln/core/point.hh | 2 +-
mln/core/routine/all.hh | 2 +-
mln/core/routine/duplicate.hh | 2 +-
mln/core/routine/essential.hh | 2 +-
mln/core/routine/exact.hh | 2 +-
mln/core/routine/extend.hh | 2 +-
mln/core/routine/init.hh | 2 +-
mln/core/routine/init.hxx | 2 +-
mln/core/routine/initialize.hh | 2 +-
mln/core/routine/ops.hh | 2 +-
mln/core/routine/primary.hh | 2 +-
mln/core/site_set/all.hh | 2 +-
mln/core/site_set/attic/p_complex_faces_piter.hh | 2 +-
mln/core/site_set/attic/p_faces_piter.hh | 2 +-
mln/core/site_set/box.hh | 2 +-
mln/core/site_set/box_piter.hh | 2 +-
mln/core/site_set/complex_psite.hh | 2 +-
mln/core/site_set/essential.hh | 2 +-
mln/core/site_set/operators.hh | 2 +-
mln/core/site_set/p_array.hh | 2 +-
mln/core/site_set/p_centered.hh | 2 +-
mln/core/site_set/p_complex.hh | 2 +-
mln/core/site_set/p_complex_piter.hh | 2 +-
mln/core/site_set/p_double.hh | 2 +-
mln/core/site_set/p_edges.hh | 2 +-
mln/core/site_set/p_edges_psite.hh | 2 +-
mln/core/site_set/p_faces.hh | 2 +-
mln/core/site_set/p_graph_piter.hh | 2 +-
mln/core/site_set/p_if.hh | 2 +-
mln/core/site_set/p_if_piter.hh | 2 +-
mln/core/site_set/p_image.hh | 2 +-
mln/core/site_set/p_key.hh | 2 +-
mln/core/site_set/p_line2d.hh | 2 +-
mln/core/site_set/p_mutable_array_of.hh | 2 +-
mln/core/site_set/p_n_faces_piter.hh | 2 +-
mln/core/site_set/p_priority.hh | 2 +-
mln/core/site_set/p_queue.hh | 2 +-
mln/core/site_set/p_queue_fast.hh | 2 +-
mln/core/site_set/p_run.hh | 2 +-
mln/core/site_set/p_run_piter.hh | 2 +-
mln/core/site_set/p_set.hh | 2 +-
mln/core/site_set/p_set_of.hh | 2 +-
mln/core/site_set/p_transformed.hh | 2 +-
mln/core/site_set/p_transformed_piter.hh | 2 +-
mln/core/site_set/p_vaccess.hh | 2 +-
mln/core/site_set/p_vertices.hh | 2 +-
mln/core/site_set/p_vertices_psite.hh | 2 +-
mln/core/tags.hh | 2 +-
mln/core/trait/all.hh | 2 +-
mln/core/trait/essential.hh | 2 +-
mln/core/trait/op_mult.hh | 2 +-
mln/core/trait/pixter.hh | 2 +-
mln/core/trait/qlf_value.hh | 2 +-
mln/core/var.hh | 2 +-
mln/core/w_window.hh | 2 +-
mln/core/window.hh | 2 +-
mln/data/abs.hh | 2 +-
mln/data/all.hh | 2 +-
mln/data/apply.hh | 2 +-
mln/data/apply.spe.hh | 2 +-
mln/data/approx/all.hh | 2 +-
mln/data/approx/essential.hh | 2 +-
mln/data/approx/median.hh | 2 +-
mln/data/compare.hh | 2 +-
mln/data/compute.hh | 2 +-
mln/data/convert.hh | 2 +-
mln/data/essential.hh | 2 +-
mln/data/fast_median.hh | 2 +-
mln/data/fill.hh | 2 +-
mln/data/fill_with_image.hh | 2 +-
mln/data/fill_with_image.spe.hh | 2 +-
mln/data/fill_with_value.hh | 2 +-
mln/data/fill_with_value.spe.hh | 2 +-
mln/data/median.hh | 2 +-
mln/data/memcpy_.hh | 2 +-
mln/data/memset_.hh | 2 +-
mln/data/naive/all.hh | 2 +-
mln/data/naive/essential.hh | 2 +-
mln/data/naive/median.hh | 2 +-
mln/data/paste.hh | 2 +-
mln/data/paste.spe.hh | 2 +-
mln/data/paste_without_localization.hh | 2 +-
mln/data/replace.hh | 2 +-
mln/data/saturate.hh | 2 +-
mln/data/sort_offsets.hh | 2 +-
mln/data/sort_psites.hh | 2 +-
mln/data/stretch.hh | 2 +-
mln/data/to_enc.hh | 2 +-
mln/data/transform.hh | 2 +-
mln/data/transform.spe.hh | 2 +-
mln/data/transform_inplace.hh | 2 +-
mln/data/update.hh | 2 +-
mln/data/was.median.hh | 2 +-
mln/debug/all.hh | 2 +-
mln/debug/draw_graph.hh | 2 +-
mln/debug/essential.hh | 2 +-
mln/debug/filename.hh | 2 +-
mln/debug/format.hh | 2 +-
mln/debug/histo.hh | 2 +-
mln/debug/iota.hh | 2 +-
mln/debug/iota.spe.hh | 2 +-
mln/debug/println.hh | 2 +-
mln/debug/println.spe.hh | 2 +-
mln/debug/println_with_border.hh | 2 +-
mln/debug/println_with_border.spe.hh | 2 +-
mln/debug/put_word.hh | 2 +-
mln/debug/quiet.hh | 2 +-
mln/debug/slices_2d.hh | 2 +-
mln/debug/superpose.hh | 2 +-
mln/display/all.hh | 2 +-
mln/display/essential.hh | 2 +-
mln/draw/all.hh | 2 +-
mln/draw/box.hh | 2 +-
mln/draw/essential.hh | 2 +-
mln/draw/line.hh | 2 +-
mln/draw/plot.hh | 2 +-
mln/essential/1d.hh | 2 +-
mln/essential/2d.hh | 2 +-
mln/essential/3d.hh | 2 +-
mln/essential/routine.hh | 2 +-
mln/estim/all.hh | 2 +-
mln/estim/essential.hh | 2 +-
mln/estim/mean.hh | 2 +-
mln/estim/min_max.hh | 2 +-
mln/estim/sum.hh | 2 +-
mln/extension/adjust.hh | 2 +-
mln/extension/adjust_duplicate.hh | 2 +-
mln/extension/adjust_fill.hh | 2 +-
mln/extension/all.hh | 2 +-
mln/extension/duplicate.hh | 2 +-
mln/extension/essential.hh | 2 +-
mln/extension/fill.hh | 2 +-
mln/extract/all.hh | 2 +-
mln/extract/blue.hh | 2 +-
mln/extract/essential.hh | 2 +-
mln/extract/green.hh | 2 +-
mln/extract/hue.hh | 2 +-
mln/extract/lum.hh | 2 +-
mln/extract/red.hh | 2 +-
mln/extract/sat.hh | 2 +-
mln/fun/access/all.hh | 2 +-
mln/fun/access/mean.hh | 2 +-
mln/fun/accu_result.hh | 2 +-
mln/fun/all.hh | 2 +-
mln/fun/binary.hh | 2 +-
mln/fun/binary_param.hh | 2 +-
mln/fun/c.hh | 2 +-
mln/fun/cast.hh | 2 +-
mln/fun/component/blue.hh | 2 +-
mln/fun/component/comp.hh | 2 +-
mln/fun/component/comp_count.hh | 2 +-
mln/fun/component/green.hh | 2 +-
mln/fun/component/ithcomp.hh | 2 +-
mln/fun/component/red.hh | 2 +-
mln/fun/component/rgb.hh | 2 +-
mln/fun/component/scomp.hh | 2 +-
mln/fun/compose.hh | 2 +-
mln/fun/composition.hh | 2 +-
mln/fun/essential.hh | 2 +-
mln/fun/from_accu.hh | 2 +-
mln/fun/i2v/all.hh | 2 +-
mln/fun/i2v/all_to.hh | 2 +-
mln/fun/i2v/array.hh | 2 +-
mln/fun/i2v/essential.hh | 2 +-
mln/fun/i2v/value_at_index.hh | 2 +-
mln/fun/internal/ch_function_value_impl.hh | 2 +-
mln/fun/internal/resolve.hh | 2 +-
mln/fun/internal/selector.hh | 2 +-
mln/fun/internal/x2x_linear_impl.hh | 2 +-
mln/fun/math/abs.hh | 2 +-
mln/fun/math/cos.hh | 2 +-
mln/fun/math/inf.hh | 2 +-
mln/fun/math/norm.hh | 2 +-
mln/fun/math/sup.hh | 2 +-
mln/fun/meta/all.hh | 2 +-
mln/fun/meta/blue.hh | 2 +-
mln/fun/meta/essential.hh | 2 +-
mln/fun/meta/first.hh | 2 +-
mln/fun/meta/green.hh | 2 +-
mln/fun/meta/hue.hh | 2 +-
mln/fun/meta/inty.hh | 2 +-
mln/fun/meta/lum.hh | 2 +-
mln/fun/meta/red.hh | 2 +-
mln/fun/meta/sat.hh | 2 +-
mln/fun/meta/second.hh | 2 +-
mln/fun/meta/to_enc.hh | 2 +-
mln/fun/ops.hh | 2 +-
mln/fun/p2b/all.hh | 2 +-
mln/fun/p2b/antilogy.hh | 2 +-
mln/fun/p2b/big_chess.hh | 2 +-
mln/fun/p2b/chess.hh | 2 +-
mln/fun/p2b/essential.hh | 2 +-
mln/fun/p2b/has.hh | 2 +-
mln/fun/p2b/tautology.hh | 2 +-
mln/fun/p2p/all.hh | 2 +-
mln/fun/p2p/fold.hh | 2 +-
mln/fun/p2p/mirror.hh | 2 +-
mln/fun/p2p/translation.hh | 2 +-
mln/fun/p2v/all.hh | 2 +-
mln/fun/p2v/elifs.hh | 2 +-
mln/fun/p2v/essential.hh | 2 +-
mln/fun/p2v/iota.hh | 2 +-
mln/fun/p2v/ternary.hh | 2 +-
mln/fun/param.hh | 2 +-
mln/fun/point/col.hh | 2 +-
mln/fun/point/row.hh | 2 +-
mln/fun/point/sli.hh | 2 +-
mln/fun/spe/binary.hh | 2 +-
mln/fun/spe/unary.hh | 2 +-
mln/fun/stat/all.hh | 2 +-
mln/fun/stat/mahalanobis.hh | 2 +-
mln/fun/unary.hh | 2 +-
mln/fun/unary_param.hh | 2 +-
mln/fun/v2b/all.hh | 2 +-
mln/fun/v2b/essential.hh | 2 +-
mln/fun/v2b/lnot.hh | 2 +-
mln/fun/v2b/threshold.hh | 2 +-
mln/fun/v2i/all.hh | 2 +-
mln/fun/v2i/index_of_value.hh | 2 +-
mln/fun/v2v/abs.hh | 2 +-
mln/fun/v2v/all.hh | 2 +-
mln/fun/v2v/cast.hh | 2 +-
mln/fun/v2v/ch_function_value.hh | 2 +-
mln/fun/v2v/component.hh | 2 +-
mln/fun/v2v/convert.hh | 2 +-
mln/fun/v2v/dec.hh | 2 +-
mln/fun/v2v/enc.hh | 2 +-
mln/fun/v2v/essential.hh | 2 +-
mln/fun/v2v/hsi_to_rgb.hh | 2 +-
mln/fun/v2v/hsl_to_rgb.hh | 2 +-
mln/fun/v2v/id.hh | 2 +-
mln/fun/v2v/inc.hh | 2 +-
mln/fun/v2v/linear.hh | 2 +-
mln/fun/v2v/norm.hh | 2 +-
mln/fun/v2v/projection.hh | 2 +-
mln/fun/v2v/rgb_to_hsi.hh | 2 +-
mln/fun/v2v/rgb_to_hsl.hh | 2 +-
mln/fun/v2v/saturate.hh | 2 +-
mln/fun/v2v/wrap.hh | 2 +-
mln/fun/v2w2v/all.hh | 2 +-
mln/fun/v2w2v/cos.hh | 2 +-
mln/fun/v2w_w2v/all.hh | 2 +-
mln/fun/v2w_w2v/norm.hh | 2 +-
mln/fun/vv2b/all.hh | 2 +-
mln/fun/vv2b/eq.hh | 2 +-
mln/fun/vv2b/ge.hh | 2 +-
mln/fun/vv2b/gt.hh | 2 +-
mln/fun/vv2b/implies.hh | 2 +-
mln/fun/vv2b/le.hh | 2 +-
mln/fun/vv2b/lt.hh | 2 +-
mln/fun/vv2v/all.hh | 2 +-
mln/fun/vv2v/diff_abs.hh | 2 +-
mln/fun/vv2v/essential.hh | 2 +-
mln/fun/vv2v/land.hh | 2 +-
mln/fun/vv2v/land_not.hh | 2 +-
mln/fun/vv2v/lor.hh | 2 +-
mln/fun/vv2v/lxor.hh | 2 +-
mln/fun/vv2v/macros.hh | 2 +-
mln/fun/vv2v/max.hh | 2 +-
mln/fun/vv2v/min.hh | 2 +-
mln/fun/vv2v/vec.hh | 2 +-
mln/fun/x2p/all.hh | 2 +-
mln/fun/x2p/closest_point.hh | 2 +-
mln/fun/x2p/essential.hh | 2 +-
mln/fun/x2v/all.hh | 2 +-
mln/fun/x2v/bilinear.hh | 2 +-
mln/fun/x2v/essential.hh | 2 +-
mln/fun/x2v/l1_norm.hh | 2 +-
mln/fun/x2v/linear.hh | 2 +-
mln/fun/x2v/nneighbor.hh | 2 +-
mln/fun/x2v/trilinear.hh | 2 +-
mln/fun/x2x/all.hh | 2 +-
mln/fun/x2x/composed.hh | 2 +-
mln/fun/x2x/essential.hh | 2 +-
mln/fun/x2x/rotation.hh | 2 +-
mln/fun/x2x/translation.hh | 2 +-
mln/geom/all.hh | 2 +-
mln/geom/bbox.hh | 2 +-
mln/geom/chamfer.hh | 2 +-
mln/geom/complex_geometry.hh | 2 +-
mln/geom/delta.hh | 2 +-
mln/geom/essential.hh | 2 +-
mln/geom/max_col.hh | 2 +-
mln/geom/max_ind.hh | 2 +-
mln/geom/max_row.hh | 2 +-
mln/geom/max_sli.hh | 2 +-
mln/geom/min_col.hh | 2 +-
mln/geom/min_ind.hh | 2 +-
mln/geom/min_row.hh | 2 +-
mln/geom/min_sli.hh | 2 +-
mln/geom/ncols.hh | 2 +-
mln/geom/ninds.hh | 2 +-
mln/geom/nrows.hh | 2 +-
mln/geom/nsites.hh | 2 +-
mln/geom/nslis.hh | 2 +-
mln/geom/pmin_pmax.hh | 2 +-
mln/geom/seeds2tiling.hh | 2 +-
mln/geom/seeds2tiling_roundness.hh | 2 +-
mln/geom/size1d.hh | 2 +-
mln/geom/size2d.hh | 2 +-
mln/geom/size3d.hh | 2 +-
mln/graph/all.hh | 2 +-
mln/graph/attribute/card.hh | 2 +-
mln/graph/attribute/representative.hh | 2 +-
mln/graph/compute.hh | 2 +-
mln/graph/essential.hh | 2 +-
mln/graph/labeling.hh | 2 +-
mln/graph/to_neighb.hh | 2 +-
mln/graph/to_win.hh | 2 +-
mln/histo/all.hh | 2 +-
mln/histo/array.hh | 2 +-
mln/histo/compute.hh | 2 +-
mln/histo/compute.spe.hh | 2 +-
mln/histo/essential.hh | 2 +-
mln/histo/point_from_value.hh | 2 +-
mln/io/abort.hh | 2 +-
mln/io/all.hh | 2 +-
mln/io/cloud/all.hh | 2 +-
mln/io/cloud/load.hh | 2 +-
mln/io/cloud/save.hh | 2 +-
mln/io/dicom/all.hh | 2 +-
mln/io/dicom/load.hh | 2 +-
mln/io/dump/all.hh | 2 +-
mln/io/dump/load.hh | 2 +-
mln/io/dump/save.hh | 2 +-
mln/io/essential.hh | 2 +-
mln/io/fits/all.hh | 2 +-
mln/io/fits/load.hh | 2 +-
mln/io/magick/all.hh | 2 +-
mln/io/magick/load.hh | 2 +-
mln/io/magick/save.hh | 2 +-
mln/io/off/all.hh | 2 +-
mln/io/off/load.hh | 2 +-
mln/io/off/save.hh | 2 +-
mln/io/pbm/all.hh | 2 +-
mln/io/pbm/load.hh | 2 +-
mln/io/pbm/save.hh | 2 +-
mln/io/pfm/all.hh | 2 +-
mln/io/pfm/load.hh | 2 +-
mln/io/pfm/save.hh | 2 +-
mln/io/pgm/all.hh | 2 +-
mln/io/pgm/load.hh | 2 +-
mln/io/pgm/save.hh | 2 +-
mln/io/plot/all.hh | 2 +-
mln/io/plot/load.hh | 2 +-
mln/io/plot/save.hh | 2 +-
mln/io/pnm/all.hh | 2 +-
mln/io/pnm/load.hh | 2 +-
mln/io/pnm/load_header.hh | 2 +-
mln/io/pnm/macros.hh | 2 +-
mln/io/pnm/max_component.hh | 2 +-
mln/io/pnm/save.hh | 2 +-
mln/io/pnm/save_header.hh | 2 +-
mln/io/ppm/all.hh | 2 +-
mln/io/ppm/load.hh | 2 +-
mln/io/ppm/save.hh | 2 +-
mln/io/tiff/all.hh | 2 +-
mln/io/tiff/load.hh | 2 +-
mln/io/txt/all.hh | 2 +-
mln/io/txt/save.hh | 2 +-
mln/labeling/all.hh | 2 +-
mln/labeling/background.hh | 2 +-
mln/labeling/blobs.hh | 2 +-
mln/labeling/colorize.hh | 2 +-
mln/labeling/compute.hh | 2 +-
mln/labeling/essential.hh | 2 +-
mln/labeling/fill_holes.hh | 2 +-
mln/labeling/flat_zones.hh | 2 +-
mln/labeling/foreground.hh | 2 +-
mln/labeling/mean_values.hh | 2 +-
mln/labeling/n_max.hh | 2 +-
mln/labeling/pack.hh | 2 +-
mln/labeling/regional_maxima.hh | 2 +-
mln/labeling/regional_minima.hh | 2 +-
mln/labeling/relabel.hh | 2 +-
mln/labeling/value.hh | 2 +-
mln/labeling/value.spe.hh | 2 +-
mln/labeling/wrap.hh | 2 +-
mln/linear/all.hh | 2 +-
mln/linear/ch_convolve.hh | 2 +-
mln/linear/convolve.hh | 2 +-
mln/linear/convolve_2x1d.hh | 2 +-
mln/linear/convolve_directional.hh | 2 +-
mln/linear/essential.hh | 2 +-
mln/linear/gaussian.hh | 2 +-
mln/linear/gaussian/filter.hh | 2 +-
mln/linear/gaussian/impl.hh | 2 +-
mln/linear/gaussian/internal/coefficients.hh | 2 +-
mln/linear/gaussian_1d.hh | 2 +-
mln/linear/gaussian_directional_2d.hh | 2 +-
mln/linear/lap.hh | 2 +-
mln/linear/local/convolve.hh | 2 +-
mln/linear/log.hh | 2 +-
mln/linear/sobel_2d.hh | 2 +-
mln/literal/all.hh | 2 +-
mln/literal/black.hh | 2 +-
mln/literal/colors.hh | 2 +-
mln/literal/essential.hh | 2 +-
mln/literal/grays.hh | 2 +-
mln/literal/identity.hh | 2 +-
mln/literal/max.hh | 2 +-
mln/literal/min.hh | 2 +-
mln/literal/one.hh | 2 +-
mln/literal/ops.hh | 2 +-
mln/literal/origin.hh | 2 +-
mln/literal/white.hh | 2 +-
mln/literal/zero.hh | 2 +-
mln/logical/all.hh | 2 +-
mln/logical/and.hh | 2 +-
mln/logical/and_not.hh | 2 +-
mln/logical/essential.hh | 2 +-
mln/logical/includes.hh | 2 +-
mln/logical/not.hh | 2 +-
mln/logical/not.spe.hh | 2 +-
mln/logical/or.hh | 2 +-
mln/logical/xor.hh | 2 +-
mln/make/all.hh | 2 +-
mln/make/attachment.hh | 2 +-
mln/make/box1d.hh | 2 +-
mln/make/box2d.hh | 2 +-
mln/make/box2d_h.hh | 2 +-
mln/make/box3d.hh | 2 +-
mln/make/cell.hh | 2 +-
mln/make/detachment.hh | 2 +-
mln/make/double_neighb2d.hh | 2 +-
mln/make/dpoint2d_h.hh | 2 +-
mln/make/dual_neighb.hh | 2 +-
mln/make/dummy_p_edges.hh | 2 +-
mln/make/dummy_p_vertices.hh | 2 +-
mln/make/edge_image.hh | 2 +-
mln/make/essential.hh | 2 +-
mln/make/h_mat.hh | 2 +-
mln/make/image.hh | 2 +-
mln/make/image2d.hh | 2 +-
mln/make/image3d.hh | 2 +-
mln/make/influence_zone_adjacency_graph.hh | 2 +-
mln/make/mat.hh | 2 +-
mln/make/p_edges_with_mass_centers.hh | 2 +-
mln/make/p_vertices_with_mass_centers.hh | 2 +-
mln/make/pix.hh | 2 +-
mln/make/pixel.hh | 2 +-
mln/make/point2d_h.hh | 2 +-
mln/make/rag_and_labeled_wsl.hh | 2 +-
mln/make/region_adjacency_graph.hh | 2 +-
mln/make/relabelfun.hh | 2 +-
mln/make/vec.hh | 2 +-
mln/make/vertex_image.hh | 2 +-
mln/make/voronoi.hh | 2 +-
mln/make/w_window.hh | 2 +-
mln/make/w_window1d.hh | 2 +-
mln/make/w_window1d_int.hh | 2 +-
mln/make/w_window2d.hh | 2 +-
mln/make/w_window2d_int.hh | 2 +-
mln/make/w_window3d.hh | 2 +-
mln/make/w_window3d_int.hh | 2 +-
mln/make/w_window_directional.hh | 2 +-
mln/make/win_chamfer.hh | 2 +-
mln/math/abs.hh | 2 +-
mln/math/acos.hh | 2 +-
mln/math/all.hh | 2 +-
mln/math/cos.hh | 2 +-
mln/math/diff_abs.hh | 2 +-
mln/math/essential.hh | 2 +-
mln/math/jacobi.hh | 2 +-
mln/math/max.hh | 2 +-
mln/math/min.hh | 2 +-
mln/math/pi.hh | 2 +-
mln/math/round.hh | 2 +-
mln/math/round_sat.hh | 2 +-
mln/math/sign.hh | 2 +-
mln/math/sin.hh | 2 +-
mln/math/sqr.hh | 2 +-
mln/math/sqrt.hh | 2 +-
mln/metal/abort.hh | 2 +-
mln/metal/all.hh | 2 +-
mln/metal/ands.hh | 2 +-
mln/metal/array.hh | 2 +-
mln/metal/array1d.hh | 2 +-
mln/metal/array2d.hh | 2 +-
mln/metal/array3d.hh | 2 +-
mln/metal/bexpr.hh | 2 +-
mln/metal/bool.hh | 2 +-
mln/metal/const.hh | 2 +-
mln/metal/converts_to.hh | 2 +-
mln/metal/equal.hh | 2 +-
mln/metal/essential.hh | 2 +-
mln/metal/fix_return.hh | 2 +-
mln/metal/goes_to.hh | 2 +-
mln/metal/if.hh | 2 +-
mln/metal/int.hh | 2 +-
mln/metal/is.hh | 2 +-
mln/metal/is_a.hh | 2 +-
mln/metal/is_const.hh | 2 +-
mln/metal/is_not.hh | 2 +-
mln/metal/is_not_a.hh | 2 +-
mln/metal/is_not_const.hh | 2 +-
mln/metal/is_not_ref.hh | 2 +-
mln/metal/is_ref.hh | 2 +-
mln/metal/is_unqualif.hh | 2 +-
mln/metal/mat.hh | 2 +-
mln/metal/math/all.hh | 2 +-
mln/metal/math/max.hh | 2 +-
mln/metal/math/pow.hh | 2 +-
mln/metal/math/root.hh | 2 +-
mln/metal/math/sqrt.hh | 2 +-
mln/metal/none.hh | 2 +-
mln/metal/not_equal.hh | 2 +-
mln/metal/ref.hh | 2 +-
mln/metal/ret.hh | 2 +-
mln/metal/same_coord.hh | 2 +-
mln/metal/same_point.hh | 2 +-
mln/metal/templated_by.hh | 2 +-
mln/metal/unconst.hh | 2 +-
mln/metal/unptr.hh | 2 +-
mln/metal/unqualif.hh | 2 +-
mln/metal/unref.hh | 2 +-
mln/metal/vec.hh | 2 +-
mln/morpho/Rd.hh | 2 +-
mln/morpho/algebraic_filter.hh | 2 +-
mln/morpho/all.hh | 2 +-
mln/morpho/approx/all.hh | 2 +-
mln/morpho/approx/dilation.hh | 2 +-
mln/morpho/approx/erosion.hh | 2 +-
mln/morpho/attribute/all.hh | 2 +-
mln/morpho/attribute/card.hh | 2 +-
mln/morpho/attribute/count_adjacent_vertices.hh | 2 +-
mln/morpho/attribute/height.hh | 2 +-
mln/morpho/attribute/sharpness.hh | 2 +-
mln/morpho/attribute/sum.hh | 2 +-
mln/morpho/attribute/volume.hh | 2 +-
mln/morpho/closing/algebraic.hh | 2 +-
mln/morpho/closing/all.hh | 2 +-
mln/morpho/closing/approx/all.hh | 2 +-
mln/morpho/closing/approx/structural.hh | 2 +-
mln/morpho/closing/area.hh | 2 +-
mln/morpho/closing/area_on_vertices.hh | 2 +-
mln/morpho/closing/essential.hh | 2 +-
mln/morpho/closing/height.hh | 2 +-
mln/morpho/closing/leveling.hh | 2 +-
mln/morpho/closing/structural.hh | 2 +-
mln/morpho/closing/sum.hh | 2 +-
mln/morpho/closing/volume.hh | 2 +-
mln/morpho/complementation.hh | 2 +-
mln/morpho/contrast.hh | 2 +-
mln/morpho/dilation.hh | 2 +-
mln/morpho/elementary/all.hh | 2 +-
mln/morpho/elementary/closing.hh | 2 +-
mln/morpho/elementary/dilation.hh | 2 +-
mln/morpho/elementary/erosion.hh | 2 +-
mln/morpho/elementary/essential.hh | 2 +-
mln/morpho/elementary/gradient.hh | 2 +-
mln/morpho/elementary/gradient_external.hh | 2 +-
mln/morpho/elementary/gradient_internal.hh | 2 +-
mln/morpho/elementary/laplacian.hh | 2 +-
mln/morpho/elementary/like_ero_fun.hh | 2 +-
mln/morpho/elementary/like_ero_set.hh | 2 +-
mln/morpho/elementary/opening.hh | 2 +-
mln/morpho/elementary/top_hat.hh | 2 +-
mln/morpho/erosion.hh | 2 +-
mln/morpho/essential.hh | 2 +-
mln/morpho/general.hh | 2 +-
mln/morpho/general.spe.hh | 2 +-
mln/morpho/gradient.hh | 2 +-
mln/morpho/hit_or_miss.hh | 2 +-
mln/morpho/includes.hh | 2 +-
mln/morpho/internal/elementary.hh | 2 +-
mln/morpho/laplacian.hh | 2 +-
mln/morpho/leveling_filter.hh | 2 +-
mln/morpho/line_gradient.hh | 2 +-
mln/morpho/meyer_wst.hh | 2 +-
mln/morpho/min.hh | 2 +-
mln/morpho/minus.hh | 2 +-
mln/morpho/opening/algebraic.hh | 2 +-
mln/morpho/opening/all.hh | 2 +-
mln/morpho/opening/approx/all.hh | 2 +-
mln/morpho/opening/approx/structural.hh | 2 +-
mln/morpho/opening/area.hh | 2 +-
mln/morpho/opening/area_on_vertices.hh | 2 +-
mln/morpho/opening/essential.hh | 2 +-
mln/morpho/opening/height.hh | 2 +-
mln/morpho/opening/leveling.hh | 2 +-
mln/morpho/opening/structural.hh | 2 +-
mln/morpho/opening/volume.hh | 2 +-
mln/morpho/plus.hh | 2 +-
mln/morpho/rank_filter.hh | 2 +-
mln/morpho/reconstruction/all.hh | 2 +-
mln/morpho/reconstruction/by_dilation/all.hh | 2 +-
mln/morpho/reconstruction/by_dilation/union_find.hh | 2 +-
mln/morpho/reconstruction/by_erosion/all.hh | 2 +-
mln/morpho/reconstruction/by_erosion/union_find.hh | 2 +-
mln/morpho/skeleton_constrained.hh | 2 +-
mln/morpho/thick_miss.hh | 2 +-
mln/morpho/thickening.hh | 2 +-
mln/morpho/thin_fit.hh | 2 +-
mln/morpho/thinning.hh | 2 +-
mln/morpho/top_hat.hh | 2 +-
mln/morpho/tree/all.hh | 2 +-
mln/morpho/tree/compute_attribute_image.hh | 2 +-
mln/morpho/tree/compute_parent.hh | 2 +-
mln/morpho/tree/data.hh | 2 +-
mln/morpho/tree/filter/all.hh | 2 +-
mln/morpho/tree/filter/direct.hh | 2 +-
mln/morpho/tree/filter/filter.hh | 2 +-
mln/morpho/tree/filter/max.hh | 2 +-
mln/morpho/tree/filter/min.hh | 2 +-
mln/morpho/tree/filter/subtractive.hh | 2 +-
mln/morpho/tree/max.hh | 2 +-
mln/morpho/tree/propagate_if.hh | 2 +-
mln/morpho/tree/propagate_node.hh | 2 +-
mln/morpho/tree/propagate_representative.hh | 2 +-
mln/morpho/tree/utils.hh | 2 +-
mln/morpho/watershed/all.hh | 2 +-
mln/morpho/watershed/flooding.hh | 2 +-
mln/morpho/watershed/superpose.hh | 2 +-
mln/norm/all.hh | 2 +-
mln/norm/essential.hh | 2 +-
mln/norm/l1.hh | 2 +-
mln/norm/l2.hh | 2 +-
mln/norm/linfty.hh | 2 +-
mln/opt/all.hh | 2 +-
mln/opt/at.hh | 2 +-
mln/opt/element.hh | 2 +-
mln/opt/essential.hh | 2 +-
mln/opt/value.hh | 2 +-
mln/pw/all.hh | 2 +-
mln/pw/cst.hh | 2 +-
mln/pw/essential.hh | 2 +-
mln/pw/image.hh | 2 +-
mln/pw/internal/image_base.hh | 2 +-
mln/pw/value.hh | 2 +-
mln/pw/var.hh | 2 +-
mln/registration/all.hh | 2 +-
mln/registration/essential.hh | 2 +-
mln/registration/get_rot.hh | 2 +-
mln/registration/get_rtransf.hh | 2 +-
mln/registration/icp.hh | 2 +-
mln/registration/internal/rms.hh | 2 +-
mln/registration/registration.hh | 2 +-
mln/set/all.hh | 2 +-
mln/set/card.hh | 2 +-
mln/set/compute.hh | 2 +-
mln/set/compute_with_weights.hh | 2 +-
mln/set/diff.hh | 2 +-
mln/set/essential.hh | 2 +-
mln/set/get.hh | 2 +-
mln/set/has.hh | 2 +-
mln/set/inter.hh | 2 +-
mln/set/sym_diff.hh | 2 +-
mln/set/uni.hh | 2 +-
mln/set/unique.hh | 2 +-
mln/subsampling/all.hh | 2 +-
mln/subsampling/essential.hh | 2 +-
mln/subsampling/gaussian_subsampling.hh | 2 +-
mln/subsampling/subsampling.hh | 2 +-
mln/tag/all.hh | 2 +-
mln/tag/essential.hh | 2 +-
mln/tag/init.hh | 2 +-
mln/tag/skeleton.hh | 2 +-
mln/test/all.hh | 2 +-
mln/test/essential.hh | 2 +-
mln/test/positive.hh | 2 +-
mln/test/predicate.hh | 2 +-
mln/topo/adj_higher_dim_connected_n_face_iter.hh | 2 +-
mln/topo/adj_higher_face_iter.hh | 2 +-
mln/topo/adj_lower_dim_connected_n_face_iter.hh | 2 +-
mln/topo/adj_lower_face_iter.hh | 2 +-
mln/topo/adj_lower_higher_face_iter.hh | 2 +-
mln/topo/adj_m_face_iter.hh | 2 +-
mln/topo/algebraic_face.hh | 2 +-
mln/topo/algebraic_n_face.hh | 2 +-
mln/topo/all.hh | 2 +-
mln/topo/attic/faces_iter.hh | 2 +-
mln/topo/center_only_iter.hh | 2 +-
mln/topo/centered_iter_adapter.hh | 2 +-
mln/topo/complex.hh | 2 +-
mln/topo/complex_iterators.hh | 2 +-
mln/topo/detach.hh | 2 +-
mln/topo/essential.hh | 2 +-
mln/topo/face.hh | 2 +-
mln/topo/face_data.hh | 2 +-
mln/topo/face_iter.hh | 2 +-
mln/topo/internal/complex_iterator_base.hh | 2 +-
mln/topo/internal/complex_relative_iterator_base.hh | 2 +-
mln/topo/internal/complex_relative_iterator_sequence.hh | 2 +-
mln/topo/internal/complex_set_iterator_base.hh | 2 +-
mln/topo/is_facet.hh | 2 +-
mln/topo/is_n_face.hh | 2 +-
mln/topo/is_simple_2d.hh | 2 +-
mln/topo/is_simple_cell.hh | 2 +-
mln/topo/n_face.hh | 2 +-
mln/topo/n_face_iter.hh | 2 +-
mln/topo/n_faces_set.hh | 2 +-
mln/topo/skeleton/breadth_first_thinning.hh | 2 +-
mln/topo/skeleton/crest.hh | 2 +-
mln/topo/skeleton/is_simple_point.hh | 2 +-
mln/topo/static_n_face_iter.hh | 2 +-
mln/trace/all.hh | 2 +-
mln/trace/entering.hh | 2 +-
mln/trace/essential.hh | 2 +-
mln/trace/exiting.hh | 2 +-
mln/trace/quiet.hh | 2 +-
mln/trace/resume.hh | 2 +-
mln/trace/stop.hh | 2 +-
mln/trace/warning.hh | 2 +-
mln/trait/accumulator/print.hh | 2 +-
mln/trait/accumulator/props.hh | 2 +-
mln/trait/accumulators.hh | 2 +-
mln/trait/all.hh | 2 +-
mln/trait/ch_function_value.hh | 2 +-
mln/trait/ch_value.hh | 2 +-
mln/trait/concrete.hh | 2 +-
mln/trait/essential.hh | 2 +-
mln/trait/functions.hh | 2 +-
mln/trait/image/print.hh | 2 +-
mln/trait/image/props.hh | 2 +-
mln/trait/image_from_grid.hh | 2 +-
mln/trait/images.hh | 2 +-
mln/trait/neighborhood.hh | 2 +-
mln/trait/next/solve.hh | 2 +-
mln/trait/next/solve_binary.hh | 2 +-
mln/trait/next/solve_proxy.hh | 2 +-
mln/trait/next/solve_unary.hh | 2 +-
mln/trait/op/all.hh | 2 +-
mln/trait/op/and.hh | 2 +-
mln/trait/op/decl.hh | 2 +-
mln/trait/op/div.hh | 2 +-
mln/trait/op/eq.hh | 2 +-
mln/trait/op/essential.hh | 2 +-
mln/trait/op/geq.hh | 2 +-
mln/trait/op/greater.hh | 2 +-
mln/trait/op/leq.hh | 2 +-
mln/trait/op/less.hh | 2 +-
mln/trait/op/lor.hh | 2 +-
mln/trait/op/minus.hh | 2 +-
mln/trait/op/mod.hh | 2 +-
mln/trait/op/neq.hh | 2 +-
mln/trait/op/not.hh | 2 +-
mln/trait/op/or.hh | 2 +-
mln/trait/op/ord.hh | 2 +-
mln/trait/op/plus.hh | 2 +-
mln/trait/op/postdec.hh | 2 +-
mln/trait/op/postinc.hh | 2 +-
mln/trait/op/predec.hh | 2 +-
mln/trait/op/preinc.hh | 2 +-
mln/trait/op/times.hh | 2 +-
mln/trait/op/uminus.hh | 2 +-
mln/trait/op/uplus.hh | 2 +-
mln/trait/op/xor.hh | 2 +-
mln/trait/promote.hh | 2 +-
mln/trait/site_set/print.hh | 2 +-
mln/trait/site_set/props.hh | 2 +-
mln/trait/site_sets.hh | 2 +-
mln/trait/solve.hh | 2 +-
mln/trait/solve_binary.hh | 2 +-
mln/trait/solve_unary.hh | 2 +-
mln/trait/undef.hh | 2 +-
mln/trait/value/all.hh | 2 +-
mln/trait/value/comp.hh | 2 +-
mln/trait/value/essential.hh | 2 +-
mln/trait/value/internal/all.hh | 2 +-
mln/trait/value/internal/comp.hh | 2 +-
mln/trait/value/kind.hh | 2 +-
mln/trait/value/nature.hh | 2 +-
mln/trait/value/print.hh | 2 +-
mln/trait/value/quant.hh | 2 +-
mln/trait/value_.hh | 2 +-
mln/trait/window/print.hh | 2 +-
mln/trait/window/props.hh | 2 +-
mln/trait/windows.hh | 2 +-
mln/transform/all.hh | 2 +-
mln/transform/distance_and_closest_point_geodesic.hh | 2 +-
mln/transform/distance_and_influence_zone_geodesic.hh | 2 +-
mln/transform/distance_front.hh | 2 +-
mln/transform/distance_geodesic.hh | 2 +-
mln/transform/essential.hh | 2 +-
mln/transform/hough.hh | 2 +-
mln/transform/influence_zone_front.hh | 2 +-
mln/transform/influence_zone_geodesic.hh | 2 +-
mln/transform/internal/all.hh | 2 +-
mln/transform/internal/closest_point_functor.hh | 2 +-
mln/transform/internal/distance_functor.hh | 2 +-
mln/transform/internal/influence_zone_functor.hh | 2 +-
mln/transformation/all.hh | 2 +-
mln/transformation/essential.hh | 2 +-
mln/transformation/rotate.hh | 2 +-
mln/util/adjacency_matrix.hh | 2 +-
mln/util/all.hh | 2 +-
mln/util/array.hh | 2 +-
mln/util/branch_iter.hh | 2 +-
mln/util/branch_iter_ind.hh | 2 +-
mln/util/couple.hh | 2 +-
mln/util/dindex.hh | 2 +-
mln/util/eat.hh | 2 +-
mln/util/edge.hh | 2 +-
mln/util/essential.hh | 2 +-
mln/util/fibonacci_heap.hh | 2 +-
mln/util/graph.hh | 2 +-
mln/util/graph_ids.hh | 2 +-
mln/util/greater_point.hh | 2 +-
mln/util/greater_psite.hh | 2 +-
mln/util/ignore.hh | 2 +-
mln/util/index.hh | 2 +-
mln/util/internal/edge_impl.hh | 2 +-
mln/util/internal/graph_base.hh | 2 +-
mln/util/internal/graph_iter.hh | 2 +-
mln/util/internal/graph_iter_base.hh | 2 +-
mln/util/internal/graph_nbh_iter.hh | 2 +-
mln/util/internal/graph_nbh_iter_base.hh | 2 +-
mln/util/internal/id2element.hh | 2 +-
mln/util/internal/vertex_impl.hh | 2 +-
mln/util/lazy_set.hh | 2 +-
mln/util/lemmings.hh | 2 +-
mln/util/line_graph.hh | 2 +-
mln/util/max.hh | 2 +-
mln/util/multi_site.hh | 2 +-
mln/util/nil.hh | 2 +-
mln/util/object_id.hh | 2 +-
mln/util/ord.hh | 2 +-
mln/util/ord_pair.hh | 2 +-
mln/util/pix.hh | 2 +-
mln/util/set.hh | 2 +-
mln/util/site_pair.hh | 2 +-
mln/util/soft_heap.hh | 2 +-
mln/util/timer.hh | 2 +-
mln/util/tracked_ptr.hh | 2 +-
mln/util/tree.hh | 2 +-
mln/util/tree_fast.hh | 2 +-
mln/util/tree_fast_to_image.hh | 2 +-
mln/util/tree_to_fast.hh | 2 +-
mln/util/tree_to_image.hh | 2 +-
mln/util/vertex.hh | 2 +-
mln/util/yes.hh | 2 +-
mln/value/aliases.hh | 2 +-
mln/value/all.hh | 2 +-
mln/value/builtin/all.hh | 2 +-
mln/value/builtin/carrays.hh | 2 +-
mln/value/builtin/essential.hh | 2 +-
mln/value/builtin/floatings.hh | 2 +-
mln/value/builtin/integers.hh | 2 +-
mln/value/builtin/ops.hh | 2 +-
mln/value/builtin/promotions.hh | 2 +-
mln/value/builtin/symbolics.hh | 2 +-
mln/value/cast.hh | 2 +-
mln/value/concept/all.hh | 2 +-
mln/value/concept/built_in.hh | 2 +-
mln/value/concept/data.hh | 2 +-
mln/value/concept/essential.hh | 2 +-
mln/value/concept/floating.hh | 2 +-
mln/value/concept/integer.hh | 2 +-
mln/value/concept/scalar.hh | 2 +-
mln/value/concept/structured.hh | 2 +-
mln/value/concept/symbolic.hh | 2 +-
mln/value/concept/vectorial.hh | 2 +-
mln/value/equiv.hh | 2 +-
mln/value/essential.hh | 2 +-
mln/value/float01.hh | 2 +-
mln/value/float01_.hh | 2 +-
mln/value/float01_16.hh | 2 +-
mln/value/float01_8.hh | 2 +-
mln/value/float01_f.hh | 2 +-
mln/value/gl16.hh | 2 +-
mln/value/gl8.hh | 2 +-
mln/value/glf.hh | 2 +-
mln/value/graylevel.hh | 2 +-
mln/value/graylevel_f.hh | 2 +-
mln/value/hsi.hh | 2 +-
mln/value/hsl.hh | 2 +-
mln/value/int_s.hh | 2 +-
mln/value/int_s16.hh | 2 +-
mln/value/int_s32.hh | 2 +-
mln/value/int_s8.hh | 2 +-
mln/value/int_u.hh | 2 +-
mln/value/int_u12.hh | 2 +-
mln/value/int_u16.hh | 2 +-
mln/value/int_u32.hh | 2 +-
mln/value/int_u8.hh | 2 +-
mln/value/int_u_sat.hh | 2 +-
mln/value/internal/all.hh | 2 +-
mln/value/internal/convert.hh | 2 +-
mln/value/internal/encoding.hh | 2 +-
mln/value/internal/essential.hh | 2 +-
mln/value/internal/gray_.hh | 2 +-
mln/value/internal/gray_f.hh | 2 +-
mln/value/internal/integer.hh | 2 +-
mln/value/internal/iterable_set.hh | 2 +-
mln/value/internal/limits.hh | 2 +-
mln/value/internal/value_like.hh | 2 +-
mln/value/interval.hh | 2 +-
mln/value/label.hh | 2 +-
mln/value/label_16.hh | 2 +-
mln/value/label_8.hh | 2 +-
mln/value/lut_vec.hh | 2 +-
mln/value/mixin.hh | 2 +-
mln/value/ops.hh | 2 +-
mln/value/other.hh | 2 +-
mln/value/proxy.hh | 2 +-
mln/value/rgb.hh | 2 +-
mln/value/rgb16.hh | 2 +-
mln/value/rgb8.hh | 2 +-
mln/value/scalar.hh | 2 +-
mln/value/set.hh | 2 +-
mln/value/shell.hh | 2 +-
mln/value/sign.hh | 2 +-
mln/value/stack.hh | 2 +-
mln/value/super_value.hh | 2 +-
mln/value/viter.hh | 2 +-
mln/win/all.hh | 2 +-
mln/win/backdiag2d.hh | 2 +-
mln/win/ball.hh | 2 +-
mln/win/cube3d.hh | 2 +-
mln/win/cuboid3d.hh | 2 +-
mln/win/diag2d.hh | 2 +-
mln/win/diff.hh | 2 +-
mln/win/disk2d.hh | 2 +-
mln/win/essential.hh | 2 +-
mln/win/hline2d.hh | 2 +-
mln/win/inter.hh | 2 +-
mln/win/line.hh | 2 +-
mln/win/multiple.hh | 2 +-
mln/win/multiple_size.hh | 2 +-
mln/win/octagon2d.hh | 2 +-
mln/win/rectangle2d.hh | 2 +-
mln/win/segment1d.hh | 2 +-
mln/win/shift.hh | 2 +-
mln/win/sphere3d.hh | 2 +-
mln/win/sym.hh | 2 +-
mln/win/vline2d.hh | 2 +-
mln/world/all.hh | 2 +-
mln/world/binary_2d/all.hh | 2 +-
mln/world/binary_2d/enlarge.hh | 2 +-
mln/world/binary_2d/projected_histo.hh | 2 +-
mln/world/binary_2d/subsample.hh | 2 +-
mln/world/inter_pixel/all.hh | 2 +-
mln/world/inter_pixel/compute.hh | 2 +-
mln/world/inter_pixel/dim2/all.hh | 2 +-
mln/world/inter_pixel/dim2/is_dot.hh | 2 +-
mln/world/inter_pixel/dim2/is_edge.hh | 2 +-
mln/world/inter_pixel/dim2/is_pixel.hh | 2 +-
mln/world/inter_pixel/dim2/is_row_odd.hh | 2 +-
mln/world/inter_pixel/dim2/make_edge_image.hh | 2 +-
mln/world/inter_pixel/display_edge.hh | 2 +-
mln/world/inter_pixel/full2image.hh | 2 +-
mln/world/inter_pixel/immerse.hh | 2 +-
mln/world/inter_pixel/is_pixel.hh | 2 +-
mln/world/inter_pixel/is_separator.hh | 2 +-
mln/world/inter_pixel/neighb2d.hh | 2 +-
mln/world/inter_pixel/separator_to_pixels.hh | 2 +-
tests/accu/all_accus.cc | 2 +-
tests/accu/bbox.cc | 2 +-
tests/accu/compute.cc | 2 +-
tests/accu/count.cc | 2 +-
tests/accu/histo.cc | 2 +-
tests/accu/image/init.cc | 2 +-
tests/accu/image/set_value.cc | 2 +-
tests/accu/image/take.cc | 2 +-
tests/accu/image/take_as_init.cc | 2 +-
tests/accu/image/take_n_times.cc | 2 +-
tests/accu/image/to_result.cc | 2 +-
tests/accu/image/untake.cc | 2 +-
tests/accu/line.cc | 2 +-
tests/accu/max.cc | 2 +-
tests/accu/max_h.cc | 2 +-
tests/accu/max_site.cc | 2 +-
tests/accu/mean.cc | 2 +-
tests/accu/median_h.cc | 2 +-
tests/accu/min.cc | 2 +-
tests/accu/min_h.cc | 2 +-
tests/accu/min_max.cc | 2 +-
tests/accu/nil.cc | 2 +-
tests/accu/pair.cc | 2 +-
tests/accu/rank.cc | 2 +-
tests/accu/site_set/rectangularity.cc | 2 +-
tests/accu/stat/var.cc | 2 +-
tests/accu/transform.cc | 2 +-
tests/accu/transform_diagonal.cc | 2 +-
tests/accu/transform_directional.cc | 2 +-
tests/accu/transform_line.cc | 2 +-
tests/accu/transform_snake.cc | 2 +-
tests/accu/tuple.cc | 2 +-
tests/algebra/h_mat.cc | 2 +-
tests/algebra/h_vec.cc | 2 +-
tests/algebra/mat.cc | 2 +-
tests/algebra/mat2.cc | 2 +-
tests/algebra/op_times.cc | 2 +-
tests/algebra/quat.cc | 2 +-
tests/algebra/vec.cc | 2 +-
tests/algebra/vec2.cc | 2 +-
tests/all_headers.cc | 2 +-
tests/arith/all_headers.cc | 2 +-
tests/arith/diff_abs.cc | 2 +-
tests/arith/minus.cc | 2 +-
tests/arith/minus_full.cc | 2 +-
tests/arith/plus.cc | 2 +-
tests/arith/plus_full.cc | 2 +-
tests/arith/revert.cc | 2 +-
tests/arith/revert_full.cc | 2 +-
tests/arith/times.cc | 2 +-
tests/arith/times_full.cc | 2 +-
tests/binarization/threshold.cc | 2 +-
tests/border/adjust.cc | 2 +-
tests/border/adjust_full.cc | 2 +-
tests/border/all_headers.cc | 2 +-
tests/border/duplicate.cc | 2 +-
tests/border/duplicate_full.cc | 2 +-
tests/border/equalize.cc | 2 +-
tests/border/equalize_full.cc | 2 +-
tests/border/fill.cc | 2 +-
tests/border/fill_full.cc | 2 +-
tests/border/find.cc | 2 +-
tests/border/find_full.cc | 2 +-
tests/border/get.cc | 2 +-
tests/border/get_full.cc | 2 +-
tests/border/mirror.cc | 2 +-
tests/border/mirror_full.cc | 2 +-
tests/border/resize.cc | 2 +-
tests/border/resize_equal.cc | 2 +-
tests/border/resize_full.cc | 2 +-
tests/border/resize_image1d_1.cc | 2 +-
tests/border/resize_image1d_2.cc | 2 +-
tests/border/resize_image1d_3.cc | 2 +-
tests/border/resize_image2d_1.cc | 2 +-
tests/border/resize_image2d_2.cc | 2 +-
tests/border/resize_image2d_3.cc | 2 +-
tests/border/resize_image3d_1.cc | 2 +-
tests/border/resize_image3d_2.cc | 2 +-
tests/border/resize_image3d_3.cc | 2 +-
tests/border/resize_image_if.cc | 2 +-
tests/border/resize_sub_image.cc | 2 +-
tests/canvas/browsing/backdiagonal2d.cc | 2 +-
tests/canvas/browsing/breadth_first_search.cc | 2 +-
tests/canvas/browsing/depth_first_search.cc | 2 +-
tests/canvas/browsing/diagonal2d.cc | 2 +-
tests/canvas/browsing/dir_struct_elt_incr_update.cc | 2 +-
tests/canvas/browsing/fwd.cc | 2 +-
tests/canvas/browsing/hyper_directional.cc | 2 +-
tests/canvas/browsing/snake_fwd.cc | 2 +-
tests/canvas/browsing/snake_generic_2d_hori.cc | 2 +-
tests/canvas/browsing/snake_generic_2d_vert.cc | 2 +-
tests/canvas/browsing/snake_generic_3d_hori.cc | 2 +-
tests/canvas/browsing/snake_generic_3d_vert.cc | 2 +-
tests/canvas/browsing/snake_vert.cc | 2 +-
tests/canvas/chamfer.cc | 2 +-
tests/canvas/morpho/attribute_filter.cc | 2 +-
tests/convert/impl/from_site_set_to_image.cc | 2 +-
tests/convert/to_hsl.cc | 2 +-
tests/convert/to_image.cc | 2 +-
tests/convert/to_p_array.cc | 2 +-
tests/convert/to_p_set.cc | 2 +-
tests/convert/to_rgb.cc | 2 +-
tests/convert/to_window.cc | 2 +-
tests/core/alias/box1d.cc | 2 +-
tests/core/alias/box2d.cc | 2 +-
tests/core/alias/box3d.cc | 2 +-
tests/core/alias/dpoint1d.cc | 2 +-
tests/core/alias/dpoint2d.cc | 2 +-
tests/core/alias/dpoint3d.cc | 2 +-
tests/core/alias/point1d.cc | 2 +-
tests/core/alias/point2d.cc | 2 +-
tests/core/alias/point3d.cc | 2 +-
tests/core/alias/w_window1d_int.cc | 2 +-
tests/core/alias/w_window2d_int.cc | 2 +-
tests/core/alias/w_window3d_int.cc | 2 +-
tests/core/alias/window1d.cc | 2 +-
tests/core/alias/window2d.cc | 2 +-
tests/core/alias/window3d.cc | 2 +-
tests/core/image/complex_image.cc | 2 +-
tests/core/image/complex_image.hh | 2 +-
tests/core/image/dmorph/hexa.cc | 2 +-
tests/core/image/dmorph/image2d_h.cc | 2 +-
tests/core/image/dmorph/image_if.cc | 2 +-
tests/core/image/dmorph/p2p_image.cc | 2 +-
tests/core/image/dmorph/slice_image.cc | 2 +-
tests/core/image/dmorph/sub_image.cc | 2 +-
tests/core/image/dmorph/transformed_image.cc | 2 +-
tests/core/image/dmorph/unproject_image.cc | 2 +-
tests/core/image/edge_image.cc | 2 +-
tests/core/image/flat_image.cc | 2 +-
tests/core/image/graph_image.cc | 2 +-
tests/core/image/image1d.cc | 2 +-
tests/core/image/image2d.cc | 2 +-
tests/core/image/image3d.cc | 2 +-
tests/core/image/imorph/decorated_image.cc | 2 +-
tests/core/image/imorph/interpolated.cc | 2 +-
tests/core/image/imorph/labeled_image.cc | 2 +-
tests/core/image/imorph/safe_image.cc | 2 +-
tests/core/image/imorph/tr_image.cc | 2 +-
tests/core/image/line_graph_image.cc | 2 +-
tests/core/image/plain.cc | 2 +-
tests/core/image/vertex_image.cc | 2 +-
tests/core/image/vmorph/cast_image.cc | 2 +-
tests/core/other/box_runstart_piter.cc | 2 +-
tests/core/other/category.cc | 2 +-
tests/core/other/dpoints_pixter.cc | 2 +-
tests/core/other/graph_elt_neighborhood.cc | 2 +-
tests/core/other/graph_elt_neighborhood_if.cc | 2 +-
tests/core/other/graph_elt_window.cc | 2 +-
tests/core/other/graph_elt_window_if.cc | 2 +-
tests/core/other/neighb.cc | 2 +-
tests/core/other/pixel.cc | 2 +-
tests/core/other/pixter1d.cc | 2 +-
tests/core/other/pixter1d_more.cc | 2 +-
tests/core/other/pixter2d.cc | 2 +-
tests/core/other/pixter2d_more.cc | 2 +-
tests/core/other/pixter3d.cc | 2 +-
tests/core/other/pixter3d_more.cc | 2 +-
tests/core/other/point_set_compatibility.cc | 2 +-
tests/core/other/var.cc | 2 +-
tests/core/other/w_window.cc | 2 +-
tests/core/routine/duplicate.cc | 2 +-
tests/core/routine/exact.cc | 2 +-
tests/core/routine/extend.cc | 2 +-
tests/core/routine/initialize.cc | 2 +-
tests/core/routine/primary.cc | 2 +-
tests/core/site_set/operators.cc | 2 +-
tests/core/site_set/p_array.cc | 2 +-
tests/core/site_set/p_complex.cc | 2 +-
tests/core/site_set/p_edges.cc | 2 +-
tests/core/site_set/p_if.cc | 2 +-
tests/core/site_set/p_image.cc | 2 +-
tests/core/site_set/p_priority_queue.cc | 2 +-
tests/core/site_set/p_queue.cc | 2 +-
tests/core/site_set/p_queue_fast.cc | 2 +-
tests/core/site_set/p_set.cc | 2 +-
tests/core/site_set/p_transformed.cc | 2 +-
tests/core/site_set/p_vaccess.cc | 2 +-
tests/core/site_set/p_vertices.cc | 2 +-
tests/data/abs.cc | 2 +-
tests/data/abs_full.cc | 2 +-
tests/data/all_headers.cc | 2 +-
tests/data/apply.cc | 2 +-
tests/data/apply_full.cc | 2 +-
tests/data/approx/median.cc | 2 +-
tests/data/compare.cc | 2 +-
tests/data/compare_full.cc | 2 +-
tests/data/compute.cc | 2 +-
tests/data/compute_full.cc | 2 +-
tests/data/convert.cc | 2 +-
tests/data/fill.cc | 2 +-
tests/data/fill_full.cc | 2 +-
tests/data/fill_with_image.cc | 2 +-
tests/data/fill_with_value.cc | 2 +-
tests/data/median.cc | 2 +-
tests/data/median_fast.cc | 2 +-
tests/data/memcpy_.cc | 2 +-
tests/data/memset_.cc | 2 +-
tests/data/naive/median.cc | 2 +-
tests/data/paste.cc | 2 +-
tests/data/paste_full.cc | 2 +-
tests/data/replace.cc | 2 +-
tests/data/saturate.cc | 2 +-
tests/data/saturate_full.cc | 2 +-
tests/data/sort_psites.cc | 2 +-
tests/data/stretch.cc | 2 +-
tests/data/stretch_full.cc | 2 +-
tests/data/transform.cc | 2 +-
tests/data/transform_full.cc | 2 +-
tests/data/transform_inplace.cc | 2 +-
tests/data/update.cc | 2 +-
tests/debug/iota.cc | 2 +-
tests/debug/println.cc | 2 +-
tests/debug/println_with_border.cc | 2 +-
tests/debug/slices_2d.cc | 2 +-
tests/display/all_headers.cc | 2 +-
tests/draw/all_headers.cc | 2 +-
tests/draw/graph.cc | 2 +-
tests/draw/line.cc | 2 +-
tests/essential_headers.cc | 2 +-
tests/estim/mean.cc | 2 +-
tests/estim/min_max.cc | 2 +-
tests/extension/fill.cc | 2 +-
tests/extract/blue.cc | 2 +-
tests/extract/green.cc | 2 +-
tests/extract/red.cc | 2 +-
tests/fun/i2v/all_to.cc | 2 +-
tests/fun/i2v/array.cc | 2 +-
tests/fun/i2v/value_at_index.cc | 2 +-
tests/fun/ops.cc | 2 +-
tests/fun/p2p/fold.cc | 2 +-
tests/fun/p2p/translation.cc | 2 +-
tests/fun/stat/mahalanobis.cc | 2 +-
tests/fun/v2i/index_of_value.cc | 2 +-
tests/fun/v2v/component.cc | 2 +-
tests/fun/v2v/hsl_to_rgb.cc | 2 +-
tests/fun/v2v/norm.cc | 2 +-
tests/fun/v2v/projection.cc | 2 +-
tests/fun/v2v/rgb_to_hsl.cc | 2 +-
tests/fun/v2v/wrap.cc | 2 +-
tests/fun/vv2v/max.cc | 2 +-
tests/fun/vv2v/min.cc | 2 +-
tests/fun/x2x/composed.cc | 2 +-
tests/fun/x2x/rotation.cc | 2 +-
tests/fun/x2x/translation.cc | 2 +-
tests/geom/bbox.cc | 2 +-
tests/geom/max_col.cc | 2 +-
tests/geom/max_ind.cc | 2 +-
tests/geom/max_row.cc | 2 +-
tests/geom/max_sli.cc | 2 +-
tests/geom/min_col.cc | 2 +-
tests/geom/min_ind.cc | 2 +-
tests/geom/min_row.cc | 2 +-
tests/geom/min_sli.cc | 2 +-
tests/geom/ncols.cc | 2 +-
tests/geom/ninds.cc | 2 +-
tests/geom/nrows.cc | 2 +-
tests/geom/nsites.cc | 2 +-
tests/geom/nslis.cc | 2 +-
tests/geom/pmin_pmax.cc | 2 +-
tests/geom/seed2tiling.cc | 2 +-
tests/geom/seed2tiling_roundness.cc | 2 +-
tests/global_vars1.cc | 2 +-
tests/global_vars2.cc | 2 +-
tests/graph/attribute/card.cc | 2 +-
tests/graph/attribute/representative.cc | 2 +-
tests/graph/labeling.cc | 2 +-
tests/histo/compute.cc | 2 +-
tests/histo/point_from_value.cc | 2 +-
tests/histo/to_image1d.cc | 2 +-
tests/io/dicom/dicom.cc | 2 +-
tests/io/dump/dump.cc | 2 +-
tests/io/fits/fits.cc | 2 +-
tests/io/magick/load.cc | 2 +-
tests/io/magick/save.cc | 2 +-
tests/io/off/load_bin.cc | 2 +-
tests/io/off/load_float.cc | 2 +-
tests/io/off/load_save_bin.cc | 2 +-
tests/io/pbm/pbm.cc | 2 +-
tests/io/pbm/pbm_ascii.cc | 2 +-
tests/io/pgm/pgm.cc | 2 +-
tests/io/pgm/pgm16.cc | 2 +-
tests/io/pgm/pgm19.cc | 2 +-
tests/io/pgm/pgm27.cc | 2 +-
tests/io/pgm/pgm_ascii.cc | 2 +-
tests/io/ppm/ppm.cc | 2 +-
tests/io/ppm/ppm16.cc | 2 +-
tests/io/ppm/ppm23.cc | 2 +-
tests/io/tiff/load.cc | 2 +-
tests/labeling/background.cc | 2 +-
tests/labeling/blobs.cc | 2 +-
tests/labeling/colorize.cc | 2 +-
tests/labeling/compute.cc | 2 +-
tests/labeling/fill_holes.cc | 2 +-
tests/labeling/flat_zones.cc | 2 +-
tests/labeling/foreground.cc | 2 +-
tests/labeling/mean_values.cc | 2 +-
tests/labeling/n_max.cc | 2 +-
tests/labeling/pack.cc | 2 +-
tests/labeling/regional_maxima.cc | 2 +-
tests/labeling/regional_minima.cc | 2 +-
tests/labeling/relabel.cc | 2 +-
tests/labeling/value.cc | 2 +-
tests/labeling/wrap.cc | 2 +-
tests/linear/convolve.cc | 2 +-
tests/linear/convolve_2x1d.cc | 2 +-
tests/linear/convolve_directional.cc | 2 +-
tests/linear/gaussian.cc | 2 +-
tests/linear/gaussian/filter.cc | 2 +-
tests/linear/lap.cc | 2 +-
tests/linear/local/convolve.cc | 2 +-
tests/linear/log.cc | 2 +-
tests/linear/sobel_2d.cc | 2 +-
tests/literal/black.cc | 2 +-
tests/literal/medium_gray.cc | 2 +-
tests/literal/one.cc | 2 +-
tests/literal/white.cc | 2 +-
tests/literal/zero.cc | 2 +-
tests/logical/all_headers.cc | 2 +-
tests/logical/and.cc | 2 +-
tests/logical/and_not.cc | 2 +-
tests/logical/not.cc | 2 +-
tests/logical/or.cc | 2 +-
tests/logical/xor.cc | 2 +-
tests/make/dual_neighb.cc | 2 +-
tests/make/dummy_p_edges.cc | 2 +-
tests/make/dummy_p_vertices.cc | 2 +-
tests/make/h_mat.cc | 2 +-
tests/make/image2d.cc | 2 +-
tests/make/image3d.cc | 2 +-
tests/make/influence_zone_adjacency_graph.cc | 2 +-
tests/make/mat.cc | 2 +-
tests/make/p_edges_with_mass_centers.cc | 2 +-
tests/make/p_vertices_with_mass_centers.cc | 2 +-
tests/make/rag_and_labeled_wsl.cc | 2 +-
tests/make/region_adjacency_graph.cc | 2 +-
tests/make/w_window.cc | 2 +-
tests/make/w_window_directional.cc | 2 +-
tests/metal/converts_to.cc | 2 +-
tests/metal/is.cc | 2 +-
tests/metal/math/pow.cc | 2 +-
tests/metal/math/root.cc | 2 +-
tests/metal/unconst.cc | 2 +-
tests/morpho/Rd.cc | 2 +-
tests/morpho/approx/dilation.cc | 2 +-
tests/morpho/approx/erosion.cc | 2 +-
tests/morpho/artificial_line_graph_image_wst.cc | 2 +-
tests/morpho/attribute/card.cc | 2 +-
tests/morpho/attribute/height.cc | 2 +-
tests/morpho/attribute/sum.cc | 2 +-
tests/morpho/attribute/volume.cc | 2 +-
tests/morpho/closing/algebraic.cc | 2 +-
tests/morpho/closing/approx/structural.cc | 2 +-
tests/morpho/closing/area.cc | 2 +-
tests/morpho/closing/area_on_vertices.cc | 2 +-
tests/morpho/closing/height.cc | 2 +-
tests/morpho/closing/leveling.cc | 2 +-
tests/morpho/closing/structural.cc | 2 +-
tests/morpho/closing/sum.cc | 2 +-
tests/morpho/closing/volume.cc | 2 +-
tests/morpho/complex_image_morpho.cc | 2 +-
tests/morpho/complex_image_wst.cc | 2 +-
tests/morpho/contrast.cc | 2 +-
tests/morpho/dilation.cc | 2 +-
tests/morpho/elementary/closing.cc | 2 +-
tests/morpho/elementary/dilation.cc | 2 +-
tests/morpho/elementary/erosion.cc | 2 +-
tests/morpho/elementary/gradient.cc | 2 +-
tests/morpho/elementary/gradient_external.cc | 2 +-
tests/morpho/elementary/gradient_internal.cc | 2 +-
tests/morpho/elementary/laplacian.cc | 2 +-
tests/morpho/elementary/opening.cc | 2 +-
tests/morpho/elementary/top_hat.cc | 2 +-
tests/morpho/erosion.cc | 2 +-
tests/morpho/general.cc | 2 +-
tests/morpho/gradient.cc | 2 +-
tests/morpho/graph_image_morpho.cc | 2 +-
tests/morpho/graph_image_wst.cc | 2 +-
tests/morpho/hit_or_miss.cc | 2 +-
tests/morpho/laplacian.cc | 2 +-
tests/morpho/lena_line_graph_image_wst1.cc | 2 +-
tests/morpho/lena_line_graph_image_wst2.cc | 2 +-
tests/morpho/line_graph_image_morpho.cc | 2 +-
tests/morpho/line_graph_image_wst.cc | 2 +-
tests/morpho/meyer_wst.cc | 2 +-
tests/morpho/meyer_wst_long.cc | 2 +-
tests/morpho/opening/algebraic.cc | 2 +-
tests/morpho/opening/approx/structural.cc | 2 +-
tests/morpho/opening/area.cc | 2 +-
tests/morpho/opening/area_on_vertices.cc | 2 +-
tests/morpho/opening/height.cc | 2 +-
tests/morpho/opening/leveling.cc | 2 +-
tests/morpho/opening/structural.cc | 2 +-
tests/morpho/opening/sum.cc | 2 +-
tests/morpho/opening/volume.cc | 2 +-
tests/morpho/rank_filter.cc | 2 +-
tests/morpho/reconstruction/by_dilation/union_find.cc | 2 +-
tests/morpho/reconstruction/by_erosion/union_find.cc | 2 +-
tests/morpho/skeleton_constrained.cc | 2 +-
tests/morpho/thinning.cc | 2 +-
tests/morpho/top_hat.cc | 2 +-
tests/morpho/tree/compute_attribute_image.cc | 2 +-
tests/morpho/tree/compute_parent.cc | 2 +-
tests/morpho/tree/data.cc | 2 +-
tests/morpho/tree/filter/filter.cc | 2 +-
tests/morpho/tree/max.cc | 2 +-
tests/morpho/watershed/flooding.cc | 2 +-
tests/morpho/watershed/superpose.cc | 2 +-
tests/norm/common.hh | 2 +-
tests/norm/l1.cc | 2 +-
tests/norm/l2.cc | 2 +-
tests/norm/linfty.cc | 2 +-
tests/opt/at.cc | 2 +-
tests/opt/element.cc | 2 +-
tests/opt/value.cc | 2 +-
tests/pw/image.cc | 2 +-
tests/pw/value.cc | 2 +-
tests/registration/registration.cc | 2 +-
tests/set/card.cc | 2 +-
tests/set/compute.cc | 2 +-
tests/set/compute_with_weights.cc | 2 +-
tests/set/diff.cc | 2 +-
tests/set/inter.cc | 2 +-
tests/set/sym_diff.cc | 2 +-
tests/set/uni.cc | 2 +-
tests/set/unique.cc | 2 +-
tests/test/positive.cc | 2 +-
tests/timer.hh | 2 +-
tests/topo/complex.cc | 2 +-
tests/topo/skeleton/crest.cc | 2 +-
tests/topo/skeleton/is_simple_point.cc | 2 +-
tests/trait/ch_value.cc | 2 +-
tests/trait/image/images.cc | 2 +-
tests/trait/op/plus.cc | 2 +-
tests/trait/op/uminus.cc | 2 +-
tests/trait/super.cc | 2 +-
tests/trait/value/comp.cc | 2 +-
tests/trait/value/values.cc | 2 +-
tests/transform/bench_closest_point_geodesic.cc | 2 +-
tests/transform/distance_and_closest_point_geodesic.cc | 2 +-
tests/transform/distance_front.cc | 2 +-
tests/transform/distance_geodesic.cc | 2 +-
tests/transform/hough.cc | 2 +-
tests/transform/influence_zone_front.cc | 2 +-
tests/transform/influence_zone_geodesic.cc | 2 +-
tests/transformation/rotate.cc | 2 +-
tests/util/adjacency_matrix.cc | 2 +-
tests/util/all_headers.cc | 2 +-
tests/util/branch_iter.cc | 2 +-
tests/util/branch_iter_ind.cc | 2 +-
tests/util/eat.cc | 2 +-
tests/util/fibonacci_heap.cc | 2 +-
tests/util/graph.cc | 2 +-
tests/util/lazy_set.cc | 2 +-
tests/util/lemmings.cc | 2 +-
tests/util/line_graph.cc | 2 +-
tests/util/ord_pair.cc | 2 +-
tests/util/set.cc | 2 +-
tests/util/soft_heap.cc | 2 +-
tests/util/tree.cc | 2 +-
tests/util/tree_fast.cc | 2 +-
tests/util/tree_fast_to_image.cc | 2 +-
tests/util/tree_to_fast.cc | 2 +-
tests/util/tree_to_image.cc | 2 +-
tests/util/yes.cc | 2 +-
tests/value/bool.cc | 2 +-
tests/value/builtin/builtin.cc | 2 +-
tests/value/equiv.cc | 2 +-
tests/value/float01.cc | 2 +-
tests/value/float01_bis.cc | 2 +-
tests/value/float01_f.cc | 2 +-
tests/value/graylevel.cc | 2 +-
tests/value/graylevel_f.cc | 2 +-
tests/value/graylevel_f_full.cc | 2 +-
tests/value/graylevel_full.cc | 2 +-
tests/value/int_s.cc | 2 +-
tests/value/int_s16.cc | 2 +-
tests/value/int_u8.cc | 2 +-
tests/value/interop.cc | 2 +-
tests/value/label.cc | 2 +-
tests/value/macros.hh | 2 +-
tests/value/rgb8.cc | 2 +-
tests/value/rgb_full.cc | 2 +-
tests/value/scalar.cc | 2 +-
tests/value/set.cc | 2 +-
tests/value/sign.cc | 2 +-
tests/value/stack.cc | 2 +-
tests/win/backdiag2d.cc | 2 +-
tests/win/ball.cc | 2 +-
tests/win/cube3d.cc | 2 +-
tests/win/cuboid3d.cc | 2 +-
tests/win/diag2d.cc | 2 +-
tests/win/diff.cc | 2 +-
tests/win/disk2d.cc | 2 +-
tests/win/hline2d.cc | 2 +-
tests/win/inter.cc | 2 +-
tests/win/octagon2d.cc | 2 +-
tests/win/rectangle2d.cc | 2 +-
tests/win/segment1d.cc | 2 +-
tests/win/shift.cc | 2 +-
tests/win/sphere3d.cc | 2 +-
tests/win/sym.cc | 2 +-
tests/win/vline2d.cc | 2 +-
tests/world/inter_pixel/compute.cc | 2 +-
tests/world/inter_pixel/dim2/make_edge_image.cc | 2 +-
tests/world/inter_pixel/display_edge.cc | 2 +-
tests/world/inter_pixel/immerse.cc | 2 +-
tests/world/inter_pixel/is_pixel.cc | 2 +-
tests/world/inter_pixel/is_separator.cc | 2 +-
tests/world/inter_pixel/separator_to_pixels.cc | 2 +-
tools/area_flooding.cc | 2 +-
tools/seed2tiling.cc | 2 +-
trash/bgraph_image.cc | 2 +-
trash/bgraph_image.hh | 2 +-
trash/bgraph_psite.hh | 2 +-
trash/boost_graph.cc | 2 +-
trash/boost_graph.hh | 2 +-
trash/boost_graph_access.hh | 2 +-
trash/boost_graph_property.hh | 2 +-
trash/boost_graph_structure.hh | 2 +-
trash/clock_neighb.hh | 2 +-
trash/clock_neighb2d.cc | 2 +-
trash/clock_neighb2d.hh | 2 +-
trash/clock_neighb2d_bis.cc | 2 +-
trash/display_color_pretty.cc | 2 +-
trash/display_color_pretty.hh | 2 +-
trash/display_remove.hh | 2 +-
trash/display_save.hh | 2 +-
trash/display_save_and_show.hh | 2 +-
trash/display_show.cc | 2 +-
trash/display_show.hh | 2 +-
trash/fi_adaptor.cc | 2 +-
trash/fi_adaptor.hh | 2 +-
trash/graph_image.hh | 2 +-
trash/line_graph_image.hh | 2 +-
trash/mono_obased_rle_encode.hh | 2 +-
trash/mono_obased_rle_image.cc | 2 +-
trash/mono_obased_rle_image.hh | 2 +-
trash/mono_rle_encode.hh | 2 +-
trash/mono_rle_image.cc | 2 +-
trash/mono_rle_image.hh | 2 +-
trash/neighb_get.hh | 2 +-
trash/neighb_image.cc | 2 +-
trash/neighb_image.hh | 2 +-
trash/obased_rle_encode.hh | 2 +-
trash/obased_rle_image.cc | 2 +-
trash/obased_rle_image.hh | 2 +-
trash/p_bgraph.cc | 2 +-
trash/p_bgraph.hh | 2 +-
trash/p_bgraph_piter.hh | 2 +-
trash/rle_encode.hh | 2 +-
trash/rle_image.cc | 2 +-
trash/rle_image.hh | 2 +-
trash/save_and_show.cc | 2 +-
trash/sparse_encode.hh | 2 +-
trash/sparse_image.cc | 2 +-
trash/sparse_image.hh | 2 +-
trash/t_image.cc | 2 +-
trash/t_image.hh | 2 +-
trash/to_tiles.cc | 2 +-
trash/to_tiles.hh | 2 +-
trash/translate_image.cc | 2 +-
trash/translate_image.hh | 2 +-
trash/value_enc_image.cc | 2 +-
trash/value_enc_image.hh | 2 +-
trash/value_encode.hh | 2 +-
1879 files changed, 1880 insertions(+), 1880 deletions(-)
Index: trash/clock_neighb2d.cc
--- trash/clock_neighb2d.cc (revision 3983)
+++ trash/clock_neighb2d.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/neighb_image.cc
--- trash/neighb_image.cc (revision 3983)
+++ trash/neighb_image.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/sparse_image.cc
--- trash/sparse_image.cc (revision 3983)
+++ trash/sparse_image.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/mono_rle_encode.hh
--- trash/mono_rle_encode.hh (revision 3983)
+++ trash/mono_rle_encode.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/boost_graph_structure.hh
--- trash/boost_graph_structure.hh (revision 3983)
+++ trash/boost_graph_structure.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/boost_graph_access.hh
--- trash/boost_graph_access.hh (revision 3983)
+++ trash/boost_graph_access.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/value_encode.hh
--- trash/value_encode.hh (revision 3983)
+++ trash/value_encode.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/bgraph_image.cc
--- trash/bgraph_image.cc (revision 3983)
+++ trash/bgraph_image.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/t_image.cc
--- trash/t_image.cc (revision 3983)
+++ trash/t_image.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/boost_graph.cc
--- trash/boost_graph.cc (revision 3983)
+++ trash/boost_graph.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/fi_adaptor.cc
--- trash/fi_adaptor.cc (revision 3983)
+++ trash/fi_adaptor.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/translate_image.hh
--- trash/translate_image.hh (revision 3983)
+++ trash/translate_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/obased_rle_image.hh
--- trash/obased_rle_image.hh (revision 3983)
+++ trash/obased_rle_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/mono_rle_image.cc
--- trash/mono_rle_image.cc (revision 3983)
+++ trash/mono_rle_image.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/value_enc_image.hh
--- trash/value_enc_image.hh (revision 3983)
+++ trash/value_enc_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/graph_image.hh
--- trash/graph_image.hh (revision 3983)
+++ trash/graph_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/mono_obased_rle_encode.hh
--- trash/mono_obased_rle_encode.hh (revision 3983)
+++ trash/mono_obased_rle_encode.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/display_show.hh
--- trash/display_show.hh (revision 3983)
+++ trash/display_show.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/clock_neighb.hh
--- trash/clock_neighb.hh (revision 3983)
+++ trash/clock_neighb.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/display_color_pretty.hh
--- trash/display_color_pretty.hh (revision 3983)
+++ trash/display_color_pretty.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/sparse_encode.hh
--- trash/sparse_encode.hh (revision 3983)
+++ trash/sparse_encode.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/line_graph_image.hh
--- trash/line_graph_image.hh (revision 3983)
+++ trash/line_graph_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/boost_graph_property.hh
--- trash/boost_graph_property.hh (revision 3983)
+++ trash/boost_graph_property.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/to_tiles.hh
--- trash/to_tiles.hh (revision 3983)
+++ trash/to_tiles.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/display_remove.hh
--- trash/display_remove.hh (revision 3983)
+++ trash/display_remove.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/p_bgraph.hh
--- trash/p_bgraph.hh (revision 3983)
+++ trash/p_bgraph.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/display_save.hh
--- trash/display_save.hh (revision 3983)
+++ trash/display_save.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/rle_image.hh
--- trash/rle_image.hh (revision 3983)
+++ trash/rle_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/translate_image.cc
--- trash/translate_image.cc (revision 3983)
+++ trash/translate_image.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/p_bgraph_piter.hh
--- trash/p_bgraph_piter.hh (revision 3983)
+++ trash/p_bgraph_piter.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/obased_rle_image.cc
--- trash/obased_rle_image.cc (revision 3983)
+++ trash/obased_rle_image.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/value_enc_image.cc
--- trash/value_enc_image.cc (revision 3983)
+++ trash/value_enc_image.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/mono_obased_rle_image.hh
--- trash/mono_obased_rle_image.hh (revision 3983)
+++ trash/mono_obased_rle_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007.2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/neighb_get.hh
--- trash/neighb_get.hh (revision 3983)
+++ trash/neighb_get.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/display_show.cc
--- trash/display_show.cc (revision 3983)
+++ trash/display_show.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/clock_neighb2d.hh
--- trash/clock_neighb2d.hh (revision 3983)
+++ trash/clock_neighb2d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/neighb_image.hh
--- trash/neighb_image.hh (revision 3983)
+++ trash/neighb_image.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/rle_encode.hh
--- trash/rle_encode.hh (revision 3983)
+++ trash/rle_encode.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/sparse_image.hh
--- trash/sparse_image.hh (revision 3983)
+++ trash/sparse_image.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/display_color_pretty.cc
--- trash/display_color_pretty.cc (revision 3983)
+++ trash/display_color_pretty.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/bgraph_image.hh
--- trash/bgraph_image.hh (revision 3983)
+++ trash/bgraph_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/display_save_and_show.hh
--- trash/display_save_and_show.hh (revision 3983)
+++ trash/display_save_and_show.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/t_image.hh
--- trash/t_image.hh (revision 3983)
+++ trash/t_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/save_and_show.cc
--- trash/save_and_show.cc (revision 3983)
+++ trash/save_and_show.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/bgraph_psite.hh
--- trash/bgraph_psite.hh (revision 3983)
+++ trash/bgraph_psite.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/boost_graph.hh
--- trash/boost_graph.hh (revision 3983)
+++ trash/boost_graph.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/fi_adaptor.hh
--- trash/fi_adaptor.hh (revision 3983)
+++ trash/fi_adaptor.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/to_tiles.cc
--- trash/to_tiles.cc (revision 3983)
+++ trash/to_tiles.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/p_bgraph.cc
--- trash/p_bgraph.cc (revision 3983)
+++ trash/p_bgraph.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/rle_image.cc
--- trash/rle_image.cc (revision 3983)
+++ trash/rle_image.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/mono_rle_image.hh
--- trash/mono_rle_image.hh (revision 3983)
+++ trash/mono_rle_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007,2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/obased_rle_encode.hh
--- trash/obased_rle_encode.hh (revision 3983)
+++ trash/obased_rle_encode.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/mono_obased_rle_image.cc
--- trash/mono_obased_rle_image.cc (revision 3983)
+++ trash/mono_obased_rle_image.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: trash/clock_neighb2d_bis.cc
--- trash/clock_neighb2d_bis.cc (revision 3983)
+++ trash/clock_neighb2d_bis.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/face_iter.hh
--- mln/topo/face_iter.hh (revision 3983)
+++ mln/topo/face_iter.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/is_simple_cell.hh
--- mln/topo/is_simple_cell.hh (revision 3983)
+++ mln/topo/is_simple_cell.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/adj_higher_face_iter.hh
--- mln/topo/adj_higher_face_iter.hh (revision 3983)
+++ mln/topo/adj_higher_face_iter.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/skeleton/is_simple_point.hh
--- mln/topo/skeleton/is_simple_point.hh (revision 3983)
+++ mln/topo/skeleton/is_simple_point.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/skeleton/breadth_first_thinning.hh
--- mln/topo/skeleton/breadth_first_thinning.hh (revision 3983)
+++ mln/topo/skeleton/breadth_first_thinning.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/skeleton/crest.hh
--- mln/topo/skeleton/crest.hh (revision 3983)
+++ mln/topo/skeleton/crest.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/essential.hh
--- mln/topo/essential.hh (revision 3983)
+++ mln/topo/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/algebraic_face.hh
--- mln/topo/algebraic_face.hh (revision 3983)
+++ mln/topo/algebraic_face.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/face_data.hh
--- mln/topo/face_data.hh (revision 3983)
+++ mln/topo/face_data.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/detach.hh
--- mln/topo/detach.hh (revision 3983)
+++ mln/topo/detach.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/adj_lower_higher_face_iter.hh
--- mln/topo/adj_lower_higher_face_iter.hh (revision 3983)
+++ mln/topo/adj_lower_higher_face_iter.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/face.hh
--- mln/topo/face.hh (revision 3983)
+++ mln/topo/face.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/n_face_iter.hh
--- mln/topo/n_face_iter.hh (revision 3983)
+++ mln/topo/n_face_iter.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/adj_lower_dim_connected_n_face_iter.hh
--- mln/topo/adj_lower_dim_connected_n_face_iter.hh (revision 3983)
+++ mln/topo/adj_lower_dim_connected_n_face_iter.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/complex_iterators.hh
--- mln/topo/complex_iterators.hh (revision 3983)
+++ mln/topo/complex_iterators.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/center_only_iter.hh
--- mln/topo/center_only_iter.hh (revision 3983)
+++ mln/topo/center_only_iter.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/algebraic_n_face.hh
--- mln/topo/algebraic_n_face.hh (revision 3983)
+++ mln/topo/algebraic_n_face.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/static_n_face_iter.hh
--- mln/topo/static_n_face_iter.hh (revision 3983)
+++ mln/topo/static_n_face_iter.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/attic/faces_iter.hh
--- mln/topo/attic/faces_iter.hh (revision 3983)
+++ mln/topo/attic/faces_iter.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/is_n_face.hh
--- mln/topo/is_n_face.hh (revision 3983)
+++ mln/topo/is_n_face.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/complex.hh
--- mln/topo/complex.hh (revision 3983)
+++ mln/topo/complex.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/adj_lower_face_iter.hh
--- mln/topo/adj_lower_face_iter.hh (revision 3983)
+++ mln/topo/adj_lower_face_iter.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/all.hh
--- mln/topo/all.hh (revision 3983)
+++ mln/topo/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/is_simple_2d.hh
--- mln/topo/is_simple_2d.hh (revision 3983)
+++ mln/topo/is_simple_2d.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/n_faces_set.hh
--- mln/topo/n_faces_set.hh (revision 3983)
+++ mln/topo/n_faces_set.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/adj_m_face_iter.hh
--- mln/topo/adj_m_face_iter.hh (revision 3983)
+++ mln/topo/adj_m_face_iter.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/n_face.hh
--- mln/topo/n_face.hh (revision 3983)
+++ mln/topo/n_face.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/centered_iter_adapter.hh
--- mln/topo/centered_iter_adapter.hh (revision 3983)
+++ mln/topo/centered_iter_adapter.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/adj_higher_dim_connected_n_face_iter.hh
--- mln/topo/adj_higher_dim_connected_n_face_iter.hh (revision 3983)
+++ mln/topo/adj_higher_dim_connected_n_face_iter.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/is_facet.hh
--- mln/topo/is_facet.hh (revision 3983)
+++ mln/topo/is_facet.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/internal/complex_relative_iterator_sequence.hh
--- mln/topo/internal/complex_relative_iterator_sequence.hh (revision 3983)
+++ mln/topo/internal/complex_relative_iterator_sequence.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/internal/complex_relative_iterator_base.hh
--- mln/topo/internal/complex_relative_iterator_base.hh (revision 3983)
+++ mln/topo/internal/complex_relative_iterator_base.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/internal/complex_set_iterator_base.hh
--- mln/topo/internal/complex_set_iterator_base.hh (revision 3983)
+++ mln/topo/internal/complex_set_iterator_base.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/topo/internal/complex_iterator_base.hh
--- mln/topo/internal/complex_iterator_base.hh (revision 3983)
+++ mln/topo/internal/complex_iterator_base.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/accumulator/props.hh
--- mln/trait/accumulator/props.hh (revision 3983)
+++ mln/trait/accumulator/props.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/accumulator/print.hh
--- mln/trait/accumulator/print.hh (revision 3983)
+++ mln/trait/accumulator/print.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/site_set/props.hh
--- mln/trait/site_set/props.hh (revision 3983)
+++ mln/trait/site_set/props.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/site_set/print.hh
--- mln/trait/site_set/print.hh (revision 3983)
+++ mln/trait/site_set/print.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/image/props.hh
--- mln/trait/image/props.hh (revision 3983)
+++ mln/trait/image/props.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/image/print.hh
--- mln/trait/image/print.hh (revision 3983)
+++ mln/trait/image/print.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/promote.hh
--- mln/trait/promote.hh (revision 3983)
+++ mln/trait/promote.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/ch_value.hh
--- mln/trait/ch_value.hh (revision 3983)
+++ mln/trait/ch_value.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/essential.hh
--- mln/trait/essential.hh (revision 3983)
+++ mln/trait/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/solve.hh
--- mln/trait/solve.hh (revision 3983)
+++ mln/trait/solve.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/windows.hh
--- mln/trait/windows.hh (revision 3983)
+++ mln/trait/windows.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/ch_function_value.hh
--- mln/trait/ch_function_value.hh (revision 3983)
+++ mln/trait/ch_function_value.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/solve_binary.hh
--- mln/trait/solve_binary.hh (revision 3983)
+++ mln/trait/solve_binary.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2006, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/undef.hh
--- mln/trait/undef.hh (revision 3983)
+++ mln/trait/undef.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/accumulators.hh
--- mln/trait/accumulators.hh (revision 3983)
+++ mln/trait/accumulators.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/site_sets.hh
--- mln/trait/site_sets.hh (revision 3983)
+++ mln/trait/site_sets.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/concrete.hh
--- mln/trait/concrete.hh (revision 3983)
+++ mln/trait/concrete.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/images.hh
--- mln/trait/images.hh (revision 3983)
+++ mln/trait/images.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/solve_unary.hh
--- mln/trait/solve_unary.hh (revision 3983)
+++ mln/trait/solve_unary.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/neighborhood.hh
--- mln/trait/neighborhood.hh (revision 3983)
+++ mln/trait/neighborhood.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/all.hh
--- mln/trait/all.hh (revision 3983)
+++ mln/trait/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/functions.hh
--- mln/trait/functions.hh (revision 3983)
+++ mln/trait/functions.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/window/props.hh
--- mln/trait/window/props.hh (revision 3983)
+++ mln/trait/window/props.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/window/print.hh
--- mln/trait/window/print.hh (revision 3983)
+++ mln/trait/window/print.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/image_from_grid.hh
--- mln/trait/image_from_grid.hh (revision 3983)
+++ mln/trait/image_from_grid.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/value_.hh
--- mln/trait/value_.hh (revision 3983)
+++ mln/trait/value_.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/value/kind.hh
--- mln/trait/value/kind.hh (revision 3983)
+++ mln/trait/value/kind.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/value/essential.hh
--- mln/trait/value/essential.hh (revision 3983)
+++ mln/trait/value/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/value/all.hh
--- mln/trait/value/all.hh (revision 3983)
+++ mln/trait/value/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/value/quant.hh
--- mln/trait/value/quant.hh (revision 3983)
+++ mln/trait/value/quant.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/value/print.hh
--- mln/trait/value/print.hh (revision 3983)
+++ mln/trait/value/print.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/value/nature.hh
--- mln/trait/value/nature.hh (revision 3983)
+++ mln/trait/value/nature.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/value/internal/all.hh
--- mln/trait/value/internal/all.hh (revision 3983)
+++ mln/trait/value/internal/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/value/internal/comp.hh
--- mln/trait/value/internal/comp.hh (revision 3983)
+++ mln/trait/value/internal/comp.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/value/comp.hh
--- mln/trait/value/comp.hh (revision 3983)
+++ mln/trait/value/comp.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/op/leq.hh
--- mln/trait/op/leq.hh (revision 3983)
+++ mln/trait/op/leq.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/op/times.hh
--- mln/trait/op/times.hh (revision 3983)
+++ mln/trait/op/times.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/op/div.hh
--- mln/trait/op/div.hh (revision 3983)
+++ mln/trait/op/div.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/op/neq.hh
--- mln/trait/op/neq.hh (revision 3983)
+++ mln/trait/op/neq.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/op/plus.hh
--- mln/trait/op/plus.hh (revision 3983)
+++ mln/trait/op/plus.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/op/ord.hh
--- mln/trait/op/ord.hh (revision 3983)
+++ mln/trait/op/ord.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/op/essential.hh
--- mln/trait/op/essential.hh (revision 3983)
+++ mln/trait/op/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/op/greater.hh
--- mln/trait/op/greater.hh (revision 3983)
+++ mln/trait/op/greater.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/op/minus.hh
--- mln/trait/op/minus.hh (revision 3983)
+++ mln/trait/op/minus.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/op/lor.hh
--- mln/trait/op/lor.hh (revision 3983)
+++ mln/trait/op/lor.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/op/not.hh
--- mln/trait/op/not.hh (revision 3983)
+++ mln/trait/op/not.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/op/postdec.hh
--- mln/trait/op/postdec.hh (revision 3983)
+++ mln/trait/op/postdec.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/op/and.hh
--- mln/trait/op/and.hh (revision 3983)
+++ mln/trait/op/and.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/op/predec.hh
--- mln/trait/op/predec.hh (revision 3983)
+++ mln/trait/op/predec.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/op/eq.hh
--- mln/trait/op/eq.hh (revision 3983)
+++ mln/trait/op/eq.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/op/less.hh
--- mln/trait/op/less.hh (revision 3983)
+++ mln/trait/op/less.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/op/decl.hh
--- mln/trait/op/decl.hh (revision 3983)
+++ mln/trait/op/decl.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/op/all.hh
--- mln/trait/op/all.hh (revision 3983)
+++ mln/trait/op/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/op/uplus.hh
--- mln/trait/op/uplus.hh (revision 3983)
+++ mln/trait/op/uplus.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/op/xor.hh
--- mln/trait/op/xor.hh (revision 3983)
+++ mln/trait/op/xor.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/op/geq.hh
--- mln/trait/op/geq.hh (revision 3983)
+++ mln/trait/op/geq.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/op/mod.hh
--- mln/trait/op/mod.hh (revision 3983)
+++ mln/trait/op/mod.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/op/postinc.hh
--- mln/trait/op/postinc.hh (revision 3983)
+++ mln/trait/op/postinc.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/op/or.hh
--- mln/trait/op/or.hh (revision 3983)
+++ mln/trait/op/or.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/op/preinc.hh
--- mln/trait/op/preinc.hh (revision 3983)
+++ mln/trait/op/preinc.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/op/uminus.hh
--- mln/trait/op/uminus.hh (revision 3983)
+++ mln/trait/op/uminus.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/next/solve_unary.hh
--- mln/trait/next/solve_unary.hh (revision 3983)
+++ mln/trait/next/solve_unary.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/next/solve.hh
--- mln/trait/next/solve.hh (revision 3983)
+++ mln/trait/next/solve.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2006, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/next/solve_proxy.hh
--- mln/trait/next/solve_proxy.hh (revision 3983)
+++ mln/trait/next/solve_proxy.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trait/next/solve_binary.hh
--- mln/trait/next/solve_binary.hh (revision 3983)
+++ mln/trait/next/solve_binary.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2006, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/subsampling/subsampling.hh
--- mln/subsampling/subsampling.hh (revision 3983)
+++ mln/subsampling/subsampling.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/subsampling/essential.hh
--- mln/subsampling/essential.hh (revision 3983)
+++ mln/subsampling/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/subsampling/all.hh
--- mln/subsampling/all.hh (revision 3983)
+++ mln/subsampling/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/subsampling/gaussian_subsampling.hh
--- mln/subsampling/gaussian_subsampling.hh (revision 3983)
+++ mln/subsampling/gaussian_subsampling.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/histo/compute.spe.hh
--- mln/histo/compute.spe.hh (revision 3983)
+++ mln/histo/compute.spe.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/histo/essential.hh
--- mln/histo/essential.hh (revision 3983)
+++ mln/histo/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/histo/all.hh
--- mln/histo/all.hh (revision 3983)
+++ mln/histo/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/histo/point_from_value.hh
--- mln/histo/point_from_value.hh (revision 3983)
+++ mln/histo/point_from_value.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/histo/compute.hh
--- mln/histo/compute.hh (revision 3983)
+++ mln/histo/compute.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/histo/array.hh
--- mln/histo/array.hh (revision 3983)
+++ mln/histo/array.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/debug/iota.spe.hh
--- mln/debug/iota.spe.hh (revision 3983)
+++ mln/debug/iota.spe.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/debug/superpose.hh
--- mln/debug/superpose.hh (revision 3983)
+++ mln/debug/superpose.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/debug/histo.hh
--- mln/debug/histo.hh (revision 3983)
+++ mln/debug/histo.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/debug/println.hh
--- mln/debug/println.hh (revision 3983)
+++ mln/debug/println.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/debug/quiet.hh
--- mln/debug/quiet.hh (revision 3983)
+++ mln/debug/quiet.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/debug/essential.hh
--- mln/debug/essential.hh (revision 3983)
+++ mln/debug/essential.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/debug/format.hh
--- mln/debug/format.hh (revision 3983)
+++ mln/debug/format.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/debug/iota.hh
--- mln/debug/iota.hh (revision 3983)
+++ mln/debug/iota.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/debug/put_word.hh
--- mln/debug/put_word.hh (revision 3983)
+++ mln/debug/put_word.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/debug/println_with_border.spe.hh
--- mln/debug/println_with_border.spe.hh (revision 3983)
+++ mln/debug/println_with_border.spe.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/debug/slices_2d.hh
--- mln/debug/slices_2d.hh (revision 3983)
+++ mln/debug/slices_2d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/debug/all.hh
--- mln/debug/all.hh (revision 3983)
+++ mln/debug/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/debug/println.spe.hh
--- mln/debug/println.spe.hh (revision 3983)
+++ mln/debug/println.spe.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/debug/println_with_border.hh
--- mln/debug/println_with_border.hh (revision 3983)
+++ mln/debug/println_with_border.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/debug/draw_graph.hh
--- mln/debug/draw_graph.hh (revision 3983)
+++ mln/debug/draw_graph.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/debug/filename.hh
--- mln/debug/filename.hh (revision 3983)
+++ mln/debug/filename.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/world/inter_pixel/immerse.hh
--- mln/world/inter_pixel/immerse.hh (revision 3983)
+++ mln/world/inter_pixel/immerse.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/world/inter_pixel/neighb2d.hh
--- mln/world/inter_pixel/neighb2d.hh (revision 3983)
+++ mln/world/inter_pixel/neighb2d.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/world/inter_pixel/separator_to_pixels.hh
--- mln/world/inter_pixel/separator_to_pixels.hh (revision 3983)
+++ mln/world/inter_pixel/separator_to_pixels.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/world/inter_pixel/full2image.hh
--- mln/world/inter_pixel/full2image.hh (revision 3983)
+++ mln/world/inter_pixel/full2image.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/world/inter_pixel/all.hh
--- mln/world/inter_pixel/all.hh (revision 3983)
+++ mln/world/inter_pixel/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/world/inter_pixel/display_edge.hh
--- mln/world/inter_pixel/display_edge.hh (revision 3983)
+++ mln/world/inter_pixel/display_edge.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/world/inter_pixel/is_separator.hh
--- mln/world/inter_pixel/is_separator.hh (revision 3983)
+++ mln/world/inter_pixel/is_separator.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/world/inter_pixel/compute.hh
--- mln/world/inter_pixel/compute.hh (revision 3983)
+++ mln/world/inter_pixel/compute.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/world/inter_pixel/is_pixel.hh
--- mln/world/inter_pixel/is_pixel.hh (revision 3983)
+++ mln/world/inter_pixel/is_pixel.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/world/inter_pixel/dim2/is_dot.hh
--- mln/world/inter_pixel/dim2/is_dot.hh (revision 3983)
+++ mln/world/inter_pixel/dim2/is_dot.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/world/inter_pixel/dim2/make_edge_image.hh
--- mln/world/inter_pixel/dim2/make_edge_image.hh (revision 3983)
+++ mln/world/inter_pixel/dim2/make_edge_image.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/world/inter_pixel/dim2/all.hh
--- mln/world/inter_pixel/dim2/all.hh (revision 3983)
+++ mln/world/inter_pixel/dim2/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/world/inter_pixel/dim2/is_row_odd.hh
--- mln/world/inter_pixel/dim2/is_row_odd.hh (revision 3983)
+++ mln/world/inter_pixel/dim2/is_row_odd.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/world/inter_pixel/dim2/is_pixel.hh
--- mln/world/inter_pixel/dim2/is_pixel.hh (revision 3983)
+++ mln/world/inter_pixel/dim2/is_pixel.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/world/inter_pixel/dim2/is_edge.hh
--- mln/world/inter_pixel/dim2/is_edge.hh (revision 3983)
+++ mln/world/inter_pixel/dim2/is_edge.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/world/all.hh
--- mln/world/all.hh (revision 3983)
+++ mln/world/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/world/binary_2d/projected_histo.hh
--- mln/world/binary_2d/projected_histo.hh (revision 3983)
+++ mln/world/binary_2d/projected_histo.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/world/binary_2d/all.hh
--- mln/world/binary_2d/all.hh (revision 3983)
+++ mln/world/binary_2d/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/world/binary_2d/subsample.hh
--- mln/world/binary_2d/subsample.hh (revision 3983)
+++ mln/world/binary_2d/subsample.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/world/binary_2d/enlarge.hh
--- mln/world/binary_2d/enlarge.hh (revision 3983)
+++ mln/world/binary_2d/enlarge.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_complex.hh
--- mln/core/site_set/p_complex.hh (revision 3983)
+++ mln/core/site_set/p_complex.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/box.hh
--- mln/core/site_set/box.hh (revision 3983)
+++ mln/core/site_set/box.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_complex_piter.hh
--- mln/core/site_set/p_complex_piter.hh (revision 3983)
+++ mln/core/site_set/p_complex_piter.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/box_piter.hh
--- mln/core/site_set/box_piter.hh (revision 3983)
+++ mln/core/site_set/box_piter.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_priority.hh
--- mln/core/site_set/p_priority.hh (revision 3983)
+++ mln/core/site_set/p_priority.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_faces.hh
--- mln/core/site_set/p_faces.hh (revision 3983)
+++ mln/core/site_set/p_faces.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008,2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_queue.hh
--- mln/core/site_set/p_queue.hh (revision 3983)
+++ mln/core/site_set/p_queue.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_vaccess.hh
--- mln/core/site_set/p_vaccess.hh (revision 3983)
+++ mln/core/site_set/p_vaccess.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_key.hh
--- mln/core/site_set/p_key.hh (revision 3983)
+++ mln/core/site_set/p_key.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/all.hh
--- mln/core/site_set/all.hh (revision 3983)
+++ mln/core/site_set/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_centered.hh
--- mln/core/site_set/p_centered.hh (revision 3983)
+++ mln/core/site_set/p_centered.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_queue_fast.hh
--- mln/core/site_set/p_queue_fast.hh (revision 3983)
+++ mln/core/site_set/p_queue_fast.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_n_faces_piter.hh
--- mln/core/site_set/p_n_faces_piter.hh (revision 3983)
+++ mln/core/site_set/p_n_faces_piter.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_graph_piter.hh
--- mln/core/site_set/p_graph_piter.hh (revision 3983)
+++ mln/core/site_set/p_graph_piter.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_run.hh
--- mln/core/site_set/p_run.hh (revision 3983)
+++ mln/core/site_set/p_run.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_run_piter.hh
--- mln/core/site_set/p_run_piter.hh (revision 3983)
+++ mln/core/site_set/p_run_piter.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/essential.hh
--- mln/core/site_set/essential.hh (revision 3983)
+++ mln/core/site_set/essential.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_double.hh
--- mln/core/site_set/p_double.hh (revision 3983)
+++ mln/core/site_set/p_double.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_mutable_array_of.hh
--- mln/core/site_set/p_mutable_array_of.hh (revision 3983)
+++ mln/core/site_set/p_mutable_array_of.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_line2d.hh
--- mln/core/site_set/p_line2d.hh (revision 3983)
+++ mln/core/site_set/p_line2d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_array.hh
--- mln/core/site_set/p_array.hh (revision 3983)
+++ mln/core/site_set/p_array.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_set_of.hh
--- mln/core/site_set/p_set_of.hh (revision 3983)
+++ mln/core/site_set/p_set_of.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_image.hh
--- mln/core/site_set/p_image.hh (revision 3983)
+++ mln/core/site_set/p_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_vertices.hh
--- mln/core/site_set/p_vertices.hh (revision 3983)
+++ mln/core/site_set/p_vertices.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_transformed.hh
--- mln/core/site_set/p_transformed.hh (revision 3983)
+++ mln/core/site_set/p_transformed.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_transformed_piter.hh
--- mln/core/site_set/p_transformed_piter.hh (revision 3983)
+++ mln/core/site_set/p_transformed_piter.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/attic/p_faces_piter.hh
--- mln/core/site_set/attic/p_faces_piter.hh (revision 3983)
+++ mln/core/site_set/attic/p_faces_piter.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/attic/p_complex_faces_piter.hh
--- mln/core/site_set/attic/p_complex_faces_piter.hh (revision 3983)
+++ mln/core/site_set/attic/p_complex_faces_piter.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_edges.hh
--- mln/core/site_set/p_edges.hh (revision 3983)
+++ mln/core/site_set/p_edges.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_vertices_psite.hh
--- mln/core/site_set/p_vertices_psite.hh (revision 3983)
+++ mln/core/site_set/p_vertices_psite.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_edges_psite.hh
--- mln/core/site_set/p_edges_psite.hh (revision 3983)
+++ mln/core/site_set/p_edges_psite.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_set.hh
--- mln/core/site_set/p_set.hh (revision 3983)
+++ mln/core/site_set/p_set.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/complex_psite.hh
--- mln/core/site_set/complex_psite.hh (revision 3983)
+++ mln/core/site_set/complex_psite.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_if.hh
--- mln/core/site_set/p_if.hh (revision 3983)
+++ mln/core/site_set/p_if.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/operators.hh
--- mln/core/site_set/operators.hh (revision 3983)
+++ mln/core/site_set/operators.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/site_set/p_if_piter.hh
--- mln/core/site_set/p_if_piter.hh (revision 3983)
+++ mln/core/site_set/p_if_piter.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/pixel.hh
--- mln/core/pixel.hh (revision 3983)
+++ mln/core/pixel.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/macros.hh
--- mln/core/macros.hh (revision 3983)
+++ mln/core/macros.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/complex_windows.hh
--- mln/core/image/complex_windows.hh (revision 3983)
+++ mln/core/image/complex_windows.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/complex_neighborhoods.hh
--- mln/core/image/complex_neighborhoods.hh (revision 3983)
+++ mln/core/image/complex_neighborhoods.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/essential.hh
--- mln/core/image/essential.hh (revision 3983)
+++ mln/core/image/essential.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/flat_image.hh
--- mln/core/image/flat_image.hh (revision 3983)
+++ mln/core/image/flat_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/dmorph/extension_fun.hh
--- mln/core/image/dmorph/extension_fun.hh (revision 3983)
+++ mln/core/image/dmorph/extension_fun.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/dmorph/hexa.hh
--- mln/core/image/dmorph/hexa.hh (revision 3983)
+++ mln/core/image/dmorph/hexa.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/dmorph/transformed_image.hh
--- mln/core/image/dmorph/transformed_image.hh (revision 3983)
+++ mln/core/image/dmorph/transformed_image.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/dmorph/hexa_piter.hh
--- mln/core/image/dmorph/hexa_piter.hh (revision 3983)
+++ mln/core/image/dmorph/hexa_piter.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/dmorph/sub_image.hh
--- mln/core/image/dmorph/sub_image.hh (revision 3983)
+++ mln/core/image/dmorph/sub_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/dmorph/image_if.hh
--- mln/core/image/dmorph/image_if.hh (revision 3983)
+++ mln/core/image/dmorph/image_if.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/dmorph/extended.hh
--- mln/core/image/dmorph/extended.hh (revision 3983)
+++ mln/core/image/dmorph/extended.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/dmorph/slice_image.hh
--- mln/core/image/dmorph/slice_image.hh (revision 3983)
+++ mln/core/image/dmorph/slice_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/dmorph/extension_ima.hh
--- mln/core/image/dmorph/extension_ima.hh (revision 3983)
+++ mln/core/image/dmorph/extension_ima.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/dmorph/p2p_image.hh
--- mln/core/image/dmorph/p2p_image.hh (revision 3983)
+++ mln/core/image/dmorph/p2p_image.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/dmorph/all.hh
--- mln/core/image/dmorph/all.hh (revision 3983)
+++ mln/core/image/dmorph/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/dmorph/sub_image_if.hh
--- mln/core/image/dmorph/sub_image_if.hh (revision 3983)
+++ mln/core/image/dmorph/sub_image_if.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/dmorph/unproject_image.hh
--- mln/core/image/dmorph/unproject_image.hh (revision 3983)
+++ mln/core/image/dmorph/unproject_image.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/dmorph/extension_val.hh
--- mln/core/image/dmorph/extension_val.hh (revision 3983)
+++ mln/core/image/dmorph/extension_val.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/dmorph/image2d_h.hh
--- mln/core/image/dmorph/image2d_h.hh (revision 3983)
+++ mln/core/image/dmorph/image2d_h.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/graph_window_piter.hh
--- mln/core/image/graph_window_piter.hh (revision 3983)
+++ mln/core/image/graph_window_piter.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/graph_elt_window.hh
--- mln/core/image/graph_elt_window.hh (revision 3983)
+++ mln/core/image/graph_elt_window.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/graph_elt_neighborhood.hh
--- mln/core/image/graph_elt_neighborhood.hh (revision 3983)
+++ mln/core/image/graph_elt_neighborhood.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/ch_piter.hh
--- mln/core/image/ch_piter.hh (revision 3983)
+++ mln/core/image/ch_piter.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/imorph/lazy_image.hh
--- mln/core/image/imorph/lazy_image.hh (revision 3983)
+++ mln/core/image/imorph/lazy_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/imorph/plain.hh
--- mln/core/image/imorph/plain.hh (revision 3983)
+++ mln/core/image/imorph/plain.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/imorph/tr_image.hh
--- mln/core/image/imorph/tr_image.hh (revision 3983)
+++ mln/core/image/imorph/tr_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/imorph/all.hh
--- mln/core/image/imorph/all.hh (revision 3983)
+++ mln/core/image/imorph/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/imorph/interpolated.hh
--- mln/core/image/imorph/interpolated.hh (revision 3983)
+++ mln/core/image/imorph/interpolated.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/imorph/labeled_image.hh
--- mln/core/image/imorph/labeled_image.hh (revision 3983)
+++ mln/core/image/imorph/labeled_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/imorph/decorated_image.hh
--- mln/core/image/imorph/decorated_image.hh (revision 3983)
+++ mln/core/image/imorph/decorated_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/imorph/safe.hh
--- mln/core/image/imorph/safe.hh (revision 3983)
+++ mln/core/image/imorph/safe.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/complex_window_piter.hh
--- mln/core/image/complex_window_piter.hh (revision 3983)
+++ mln/core/image/complex_window_piter.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/complex_neighborhood_piter.hh
--- mln/core/image/complex_neighborhood_piter.hh (revision 3983)
+++ mln/core/image/complex_neighborhood_piter.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/edge_image.hh
--- mln/core/image/edge_image.hh (revision 3983)
+++ mln/core/image/edge_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/image1d.hh
--- mln/core/image/image1d.hh (revision 3983)
+++ mln/core/image/image1d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/all.hh
--- mln/core/image/all.hh (revision 3983)
+++ mln/core/image/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/image2d.hh
--- mln/core/image/image2d.hh (revision 3983)
+++ mln/core/image/image2d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/graph_window_if_piter.hh
--- mln/core/image/graph_window_if_piter.hh (revision 3983)
+++ mln/core/image/graph_window_if_piter.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/image3d.hh
--- mln/core/image/image3d.hh (revision 3983)
+++ mln/core/image/image3d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/complex_image.hh
--- mln/core/image/complex_image.hh (revision 3983)
+++ mln/core/image/complex_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/graph_elt_window_if.hh
--- mln/core/image/graph_elt_window_if.hh (revision 3983)
+++ mln/core/image/graph_elt_window_if.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/graph_elt_neighborhood_if.hh
--- mln/core/image/graph_elt_neighborhood_if.hh (revision 3983)
+++ mln/core/image/graph_elt_neighborhood_if.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/vmorph/thru_image.hh
--- mln/core/image/vmorph/thru_image.hh (revision 3983)
+++ mln/core/image/vmorph/thru_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/vmorph/all.hh
--- mln/core/image/vmorph/all.hh (revision 3983)
+++ mln/core/image/vmorph/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/vmorph/fun_image.hh
--- mln/core/image/vmorph/fun_image.hh (revision 3983)
+++ mln/core/image/vmorph/fun_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/vmorph/cast_image.hh
--- mln/core/image/vmorph/cast_image.hh (revision 3983)
+++ mln/core/image/vmorph/cast_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/vmorph/violent_cast_image.hh
--- mln/core/image/vmorph/violent_cast_image.hh (revision 3983)
+++ mln/core/image/vmorph/violent_cast_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/vmorph/thrubin_image.hh
--- mln/core/image/vmorph/thrubin_image.hh (revision 3983)
+++ mln/core/image/vmorph/thrubin_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
/// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/image/vertex_image.hh
--- mln/core/image/vertex_image.hh (revision 3983)
+++ mln/core/image/vertex_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/faces_psite.hh
--- mln/core/faces_psite.hh (revision 3983)
+++ mln/core/faces_psite.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/trait/essential.hh
--- mln/core/trait/essential.hh (revision 3983)
+++ mln/core/trait/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/trait/all.hh
--- mln/core/trait/all.hh (revision 3983)
+++ mln/core/trait/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/trait/pixter.hh
--- mln/core/trait/pixter.hh (revision 3983)
+++ mln/core/trait/pixter.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/trait/qlf_value.hh
--- mln/core/trait/qlf_value.hh (revision 3983)
+++ mln/core/trait/qlf_value.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/trait/op_mult.hh
--- mln/core/trait/op_mult.hh (revision 3983)
+++ mln/core/trait/op_mult.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/routine/initialize.hh
--- mln/core/routine/initialize.hh (revision 3983)
+++ mln/core/routine/initialize.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/routine/ops.hh
--- mln/core/routine/ops.hh (revision 3983)
+++ mln/core/routine/ops.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/routine/init.hh
--- mln/core/routine/init.hh (revision 3983)
+++ mln/core/routine/init.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/routine/primary.hh
--- mln/core/routine/primary.hh (revision 3983)
+++ mln/core/routine/primary.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/routine/exact.hh
--- mln/core/routine/exact.hh (revision 3983)
+++ mln/core/routine/exact.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/routine/essential.hh
--- mln/core/routine/essential.hh (revision 3983)
+++ mln/core/routine/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/routine/extend.hh
--- mln/core/routine/extend.hh (revision 3983)
+++ mln/core/routine/extend.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/routine/all.hh
--- mln/core/routine/all.hh (revision 3983)
+++ mln/core/routine/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/routine/duplicate.hh
--- mln/core/routine/duplicate.hh (revision 3983)
+++ mln/core/routine/duplicate.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/routine/init.hxx
--- mln/core/routine/init.hxx (revision 3983)
+++ mln/core/routine/init.hxx (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/essential.hh
--- mln/core/essential.hh (revision 3983)
+++ mln/core/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/var.hh
--- mln/core/var.hh (revision 3983)
+++ mln/core/var.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/point.hh
--- mln/core/point.hh (revision 3983)
+++ mln/core/point.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/neighb1d.hh
--- mln/core/alias/neighb1d.hh (revision 3983)
+++ mln/core/alias/neighb1d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/complex_geometry.hh
--- mln/core/alias/complex_geometry.hh (revision 3983)
+++ mln/core/alias/complex_geometry.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/dpoint1d.hh
--- mln/core/alias/dpoint1d.hh (revision 3983)
+++ mln/core/alias/dpoint1d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/neighb2d.hh
--- mln/core/alias/neighb2d.hh (revision 3983)
+++ mln/core/alias/neighb2d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/dpoint2d.hh
--- mln/core/alias/dpoint2d.hh (revision 3983)
+++ mln/core/alias/dpoint2d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/neighb3d.hh
--- mln/core/alias/neighb3d.hh (revision 3983)
+++ mln/core/alias/neighb3d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/dpoint3d.hh
--- mln/core/alias/dpoint3d.hh (revision 3983)
+++ mln/core/alias/dpoint3d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/dpoint2d_h.hh
--- mln/core/alias/dpoint2d_h.hh (revision 3983)
+++ mln/core/alias/dpoint2d_h.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/p_runs2d.hh
--- mln/core/alias/p_runs2d.hh (revision 3983)
+++ mln/core/alias/p_runs2d.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/all.hh
--- mln/core/alias/all.hh (revision 3983)
+++ mln/core/alias/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/box1d.hh
--- mln/core/alias/box1d.hh (revision 3983)
+++ mln/core/alias/box1d.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/box2d.hh
--- mln/core/alias/box2d.hh (revision 3983)
+++ mln/core/alias/box2d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/point1d.hh
--- mln/core/alias/point1d.hh (revision 3983)
+++ mln/core/alias/point1d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/point2d.hh
--- mln/core/alias/point2d.hh (revision 3983)
+++ mln/core/alias/point2d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/box3d.hh
--- mln/core/alias/box3d.hh (revision 3983)
+++ mln/core/alias/box3d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/point3d.hh
--- mln/core/alias/point3d.hh (revision 3983)
+++ mln/core/alias/point3d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/box2d_h.hh
--- mln/core/alias/box2d_h.hh (revision 3983)
+++ mln/core/alias/box2d_h.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/point2d_h.hh
--- mln/core/alias/point2d_h.hh (revision 3983)
+++ mln/core/alias/point2d_h.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/w_window1d_int.hh
--- mln/core/alias/w_window1d_int.hh (revision 3983)
+++ mln/core/alias/w_window1d_int.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/window1d.hh
--- mln/core/alias/window1d.hh (revision 3983)
+++ mln/core/alias/window1d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/w_window2d_int.hh
--- mln/core/alias/w_window2d_int.hh (revision 3983)
+++ mln/core/alias/w_window2d_int.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/window2d.hh
--- mln/core/alias/window2d.hh (revision 3983)
+++ mln/core/alias/window2d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/w_window3d_int.hh
--- mln/core/alias/w_window3d_int.hh (revision 3983)
+++ mln/core/alias/w_window3d_int.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/window3d.hh
--- mln/core/alias/window3d.hh (revision 3983)
+++ mln/core/alias/window3d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/vec2d.hh
--- mln/core/alias/vec2d.hh (revision 3983)
+++ mln/core/alias/vec2d.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/vec3d.hh
--- mln/core/alias/vec3d.hh (revision 3983)
+++ mln/core/alias/vec3d.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/w_window1d_float.hh
--- mln/core/alias/w_window1d_float.hh (revision 3983)
+++ mln/core/alias/w_window1d_float.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/w_window2d_float.hh
--- mln/core/alias/w_window2d_float.hh (revision 3983)
+++ mln/core/alias/w_window2d_float.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/p_run2d.hh
--- mln/core/alias/p_run2d.hh (revision 3983)
+++ mln/core/alias/p_run2d.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/complex_image.hh
--- mln/core/alias/complex_image.hh (revision 3983)
+++ mln/core/alias/complex_image.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/alias/w_window3d_float.hh
--- mln/core/alias/w_window3d_float.hh (revision 3983)
+++ mln/core/alias/w_window3d_float.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/neighb.hh
--- mln/core/neighb.hh (revision 3983)
+++ mln/core/neighb.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/box_runstart_piter.hh
--- mln/core/box_runstart_piter.hh (revision 3983)
+++ mln/core/box_runstart_piter.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/w_window.hh
--- mln/core/w_window.hh (revision 3983)
+++ mln/core/w_window.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/proxy.hh
--- mln/core/concept/proxy.hh (revision 3983)
+++ mln/core/concept/proxy.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/meta_accumulator.hh
--- mln/core/concept/meta_accumulator.hh (revision 3983)
+++ mln/core/concept/meta_accumulator.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/function.hh
--- mln/core/concept/function.hh (revision 3983)
+++ mln/core/concept/function.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/value_iterator.hh
--- mln/core/concept/value_iterator.hh (revision 3983)
+++ mln/core/concept/value_iterator.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/value_set.hh
--- mln/core/concept/value_set.hh (revision 3983)
+++ mln/core/concept/value_set.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/weighted_window.hh
--- mln/core/concept/weighted_window.hh (revision 3983)
+++ mln/core/concept/weighted_window.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/box.hh
--- mln/core/concept/box.hh (revision 3983)
+++ mln/core/concept/box.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/proxy.hxx
--- mln/core/concept/proxy.hxx (revision 3983)
+++ mln/core/concept/proxy.hxx (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/point.hh
--- mln/core/concept/point.hh (revision 3983)
+++ mln/core/concept/point.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/pixel_iterator.hh
--- mln/core/concept/pixel_iterator.hh (revision 3983)
+++ mln/core/concept/pixel_iterator.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/browsing.hh
--- mln/core/concept/browsing.hh (revision 3983)
+++ mln/core/concept/browsing.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/meta_function.hh
--- mln/core/concept/meta_function.hh (revision 3983)
+++ mln/core/concept/meta_function.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/mesh.hh
--- mln/core/concept/mesh.hh (revision 3983)
+++ mln/core/concept/mesh.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/meta_fun.hh
--- mln/core/concept/meta_fun.hh (revision 3983)
+++ mln/core/concept/meta_fun.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/graph.hh
--- mln/core/concept/graph.hh (revision 3983)
+++ mln/core/concept/graph.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/site_proxy.hh
--- mln/core/concept/site_proxy.hh (revision 3983)
+++ mln/core/concept/site_proxy.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/object.hh
--- mln/core/concept/object.hh (revision 3983)
+++ mln/core/concept/object.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
@@ -111,7 +111,7 @@
* \section copyright Copyright and License.
* Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory
*
- * This file is part of the Olena Library. This library is free
+ * This file is part of the Milena Library. This library is free
* software; you can redistribute it and/or modify it under the terms
* of the GNU General Public License version 2 as published by the
* Free Software Foundation.
Index: mln/core/concept/window.hh
--- mln/core/concept/window.hh (revision 3983)
+++ mln/core/concept/window.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/neighborhood.hh
--- mln/core/concept/neighborhood.hh (revision 3983)
+++ mln/core/concept/neighborhood.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/doc/image.hh
--- mln/core/concept/doc/image.hh (revision 3983)
+++ mln/core/concept/doc/image.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/doc/value_iterator.hh
--- mln/core/concept/doc/value_iterator.hh (revision 3983)
+++ mln/core/concept/doc/value_iterator.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/doc/weighted_window.hh
--- mln/core/concept/doc/weighted_window.hh (revision 3983)
+++ mln/core/concept/doc/weighted_window.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/doc/value_set.hh
--- mln/core/concept/doc/value_set.hh (revision 3983)
+++ mln/core/concept/doc/value_set.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/doc/box.hh
--- mln/core/concept/doc/box.hh (revision 3983)
+++ mln/core/concept/doc/box.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/doc/iterator.hh
--- mln/core/concept/doc/iterator.hh (revision 3983)
+++ mln/core/concept/doc/iterator.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/doc/pixel_iterator.hh
--- mln/core/concept/doc/pixel_iterator.hh (revision 3983)
+++ mln/core/concept/doc/pixel_iterator.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/doc/generalized_pixel.hh
--- mln/core/concept/doc/generalized_pixel.hh (revision 3983)
+++ mln/core/concept/doc/generalized_pixel.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/doc/dpoint.hh
--- mln/core/concept/doc/dpoint.hh (revision 3983)
+++ mln/core/concept/doc/dpoint.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/doc/point_iterator.hh
--- mln/core/concept/doc/point_iterator.hh (revision 3983)
+++ mln/core/concept/doc/point_iterator.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/doc/object.hh
--- mln/core/concept/doc/object.hh (revision 3983)
+++ mln/core/concept/doc/object.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/doc/neighborhood.hh
--- mln/core/concept/doc/neighborhood.hh (revision 3983)
+++ mln/core/concept/doc/neighborhood.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/doc/window.hh
--- mln/core/concept/doc/window.hh (revision 3983)
+++ mln/core/concept/doc/window.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/doc/image_fastest.hh
--- mln/core/concept/doc/image_fastest.hh (revision 3983)
+++ mln/core/concept/doc/image_fastest.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/doc/point_site.hh
--- mln/core/concept/doc/point_site.hh (revision 3983)
+++ mln/core/concept/doc/point_site.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/doc/site_set.hh
--- mln/core/concept/doc/site_set.hh (revision 3983)
+++ mln/core/concept/doc/site_set.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/doc/accumulator.hh
--- mln/core/concept/doc/accumulator.hh (revision 3983)
+++ mln/core/concept/doc/accumulator.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/all.hh
--- mln/core/concept/all.hh (revision 3983)
+++ mln/core/concept/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/image.hh
--- mln/core/concept/image.hh (revision 3983)
+++ mln/core/concept/image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/pseudo_site.hh
--- mln/core/concept/pseudo_site.hh (revision 3983)
+++ mln/core/concept/pseudo_site.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/delta_point_site.hh
--- mln/core/concept/delta_point_site.hh (revision 3983)
+++ mln/core/concept/delta_point_site.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/iterator.hh
--- mln/core/concept/iterator.hh (revision 3983)
+++ mln/core/concept/iterator.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/generalized_pixel.hh
--- mln/core/concept/generalized_pixel.hh (revision 3983)
+++ mln/core/concept/generalized_pixel.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/literal.hh
--- mln/core/concept/literal.hh (revision 3983)
+++ mln/core/concept/literal.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/dpoint.hh
--- mln/core/concept/dpoint.hh (revision 3983)
+++ mln/core/concept/dpoint.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/gpoint.hh
--- mln/core/concept/gpoint.hh (revision 3983)
+++ mln/core/concept/gpoint.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/site.hh
--- mln/core/concept/site.hh (revision 3983)
+++ mln/core/concept/site.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/gdpoint.hh
--- mln/core/concept/gdpoint.hh (revision 3983)
+++ mln/core/concept/gdpoint.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/regular_grid.hh
--- mln/core/concept/regular_grid.hh (revision 3983)
+++ mln/core/concept/regular_grid.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/value.hh
--- mln/core/concept/value.hh (revision 3983)
+++ mln/core/concept/value.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/site_iterator.hh
--- mln/core/concept/site_iterator.hh (revision 3983)
+++ mln/core/concept/site_iterator.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/point_site.hh
--- mln/core/concept/point_site.hh (revision 3983)
+++ mln/core/concept/point_site.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/site_set.hh
--- mln/core/concept/site_set.hh (revision 3983)
+++ mln/core/concept/site_set.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/concept/accumulator.hh
--- mln/core/concept/accumulator.hh (revision 3983)
+++ mln/core/concept/accumulator.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/dpoint.hh
--- mln/core/dpoint.hh (revision 3983)
+++ mln/core/dpoint.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/tags.hh
--- mln/core/tags.hh (revision 3983)
+++ mln/core/tags.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/pixter1d.hh
--- mln/core/pixter1d.hh (revision 3983)
+++ mln/core/pixter1d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/def/coord.hh
--- mln/core/def/coord.hh (revision 3983)
+++ mln/core/def/coord.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/def/essential.hh
--- mln/core/def/essential.hh (revision 3983)
+++ mln/core/def/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/def/all.hh
--- mln/core/def/all.hh (revision 3983)
+++ mln/core/def/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/def/low_quant_nbits.hh
--- mln/core/def/low_quant_nbits.hh (revision 3983)
+++ mln/core/def/low_quant_nbits.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/def/coordf.hh
--- mln/core/def/coordf.hh (revision 3983)
+++ mln/core/def/coordf.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/pixter2d.hh
--- mln/core/pixter2d.hh (revision 3983)
+++ mln/core/pixter2d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/pixter3d.hh
--- mln/core/pixter3d.hh (revision 3983)
+++ mln/core/pixter3d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/window.hh
--- mln/core/window.hh (revision 3983)
+++ mln/core/window.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/all.hh
--- mln/core/all.hh (revision 3983)
+++ mln/core/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/grids.hh
--- mln/core/grids.hh (revision 3983)
+++ mln/core/grids.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/dpoints_pixter.hh
--- mln/core/dpoints_pixter.hh (revision 3983)
+++ mln/core/dpoints_pixter.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/category.hh
--- mln/core/category.hh (revision 3983)
+++ mln/core/category.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/contract.hh
--- mln/core/contract.hh (revision 3983)
+++ mln/core/contract.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/a_point_of.hh
--- mln/core/a_point_of.hh (revision 3983)
+++ mln/core/a_point_of.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/pixel_iterator_base.hh
--- mln/core/internal/pixel_iterator_base.hh (revision 3983)
+++ mln/core/internal/pixel_iterator_base.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/coord_impl.hh
--- mln/core/internal/coord_impl.hh (revision 3983)
+++ mln/core/internal/coord_impl.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/complex_neighborhood_base.hh
--- mln/core/internal/complex_neighborhood_base.hh (revision 3983)
+++ mln/core/internal/complex_neighborhood_base.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/piter_identity.hh
--- mln/core/internal/piter_identity.hh (revision 3983)
+++ mln/core/internal/piter_identity.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/site_set_impl.hh
--- mln/core/internal/site_set_impl.hh (revision 3983)
+++ mln/core/internal/site_set_impl.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/geom_bbox.hh
--- mln/core/internal/geom_bbox.hh (revision 3983)
+++ mln/core/internal/geom_bbox.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/site_relative_iterator_base.hh
--- mln/core/internal/site_relative_iterator_base.hh (revision 3983)
+++ mln/core/internal/site_relative_iterator_base.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/exact.hh
--- mln/core/internal/exact.hh (revision 3983)
+++ mln/core/internal/exact.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/run_image.hh
--- mln/core/internal/run_image.hh (revision 3983)
+++ mln/core/internal/run_image.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/site_iterator_base.hh
--- mln/core/internal/site_iterator_base.hh (revision 3983)
+++ mln/core/internal/site_iterator_base.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/data.hh
--- mln/core/internal/data.hh (revision 3983)
+++ mln/core/internal/data.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/site_set_base.hh
--- mln/core/internal/site_set_base.hh (revision 3983)
+++ mln/core/internal/site_set_base.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/image_base.hh
--- mln/core/internal/image_base.hh (revision 3983)
+++ mln/core/internal/image_base.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/image_morpher.hh
--- mln/core/internal/image_morpher.hh (revision 3983)
+++ mln/core/internal/image_morpher.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/check/image_all.hh
--- mln/core/internal/check/image_all.hh (revision 3983)
+++ mln/core/internal/check/image_all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/check/image_fastest.hh
--- mln/core/internal/check/image_fastest.hh (revision 3983)
+++ mln/core/internal/check/image_fastest.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/weighted_window_base.hh
--- mln/core/internal/weighted_window_base.hh (revision 3983)
+++ mln/core/internal/weighted_window_base.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/force_exact.hh
--- mln/core/internal/force_exact.hh (revision 3983)
+++ mln/core/internal/force_exact.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/graph_window_base.hh
--- mln/core/internal/graph_window_base.hh (revision 3983)
+++ mln/core/internal/graph_window_base.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/site_set_iterator_base.hh
--- mln/core/internal/site_set_iterator_base.hh (revision 3983)
+++ mln/core/internal/site_set_iterator_base.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/p_complex_piter_base.hh
--- mln/core/internal/p_complex_piter_base.hh (revision 3983)
+++ mln/core/internal/p_complex_piter_base.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/morpher_lvalue.hh
--- mln/core/internal/morpher_lvalue.hh (revision 3983)
+++ mln/core/internal/morpher_lvalue.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/image_primary.hh
--- mln/core/internal/image_primary.hh (revision 3983)
+++ mln/core/internal/image_primary.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/image_identity.hh
--- mln/core/internal/image_identity.hh (revision 3983)
+++ mln/core/internal/image_identity.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/piter_adaptor.hh
--- mln/core/internal/piter_adaptor.hh (revision 3983)
+++ mln/core/internal/piter_adaptor.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/graph_psite_base.hh
--- mln/core/internal/graph_psite_base.hh (revision 3983)
+++ mln/core/internal/graph_psite_base.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/neighborhood_base.hh
--- mln/core/internal/neighborhood_base.hh (revision 3983)
+++ mln/core/internal/neighborhood_base.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/window_base.hh
--- mln/core/internal/window_base.hh (revision 3983)
+++ mln/core/internal/window_base.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/pixel_impl.hh
--- mln/core/internal/pixel_impl.hh (revision 3983)
+++ mln/core/internal/pixel_impl.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/image_domain_morpher.hh
--- mln/core/internal/image_domain_morpher.hh (revision 3983)
+++ mln/core/internal/image_domain_morpher.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/complex_window_p_base.hh
--- mln/core/internal/complex_window_p_base.hh (revision 3983)
+++ mln/core/internal/complex_window_p_base.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/fixme.hh
--- mln/core/internal/fixme.hh (revision 3983)
+++ mln/core/internal/fixme.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/box_impl.hh
--- mln/core/internal/box_impl.hh (revision 3983)
+++ mln/core/internal/box_impl.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/image_value_morpher.hh
--- mln/core/internal/image_value_morpher.hh (revision 3983)
+++ mln/core/internal/image_value_morpher.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/pseudo_site_base.hh
--- mln/core/internal/pseudo_site_base.hh (revision 3983)
+++ mln/core/internal/pseudo_site_base.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/neighb_niter_impl.hh
--- mln/core/internal/neighb_niter_impl.hh (revision 3983)
+++ mln/core/internal/neighb_niter_impl.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/exact_gcc_2_95.hh
--- mln/core/internal/exact_gcc_2_95.hh (revision 3983)
+++ mln/core/internal/exact_gcc_2_95.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/set_of.hh
--- mln/core/internal/set_of.hh (revision 3983)
+++ mln/core/internal/set_of.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/classical_window_base.hh
--- mln/core/internal/classical_window_base.hh (revision 3983)
+++ mln/core/internal/classical_window_base.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/internal/is_masked_impl_selector.hh
--- mln/core/internal/is_masked_impl_selector.hh (revision 3983)
+++ mln/core/internal/is_masked_impl_selector.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/core/dpsites_piter.hh
--- mln/core/dpsites_piter.hh (revision 3983)
+++ mln/core/dpsites_piter.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/math/min.hh
--- mln/math/min.hh (revision 3983)
+++ mln/math/min.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/math/cos.hh
--- mln/math/cos.hh (revision 3983)
+++ mln/math/cos.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/math/acos.hh
--- mln/math/acos.hh (revision 3983)
+++ mln/math/acos.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/math/max.hh
--- mln/math/max.hh (revision 3983)
+++ mln/math/max.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/math/essential.hh
--- mln/math/essential.hh (revision 3983)
+++ mln/math/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/math/jacobi.hh
--- mln/math/jacobi.hh (revision 3983)
+++ mln/math/jacobi.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/math/round.hh
--- mln/math/round.hh (revision 3983)
+++ mln/math/round.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/math/sqrt.hh
--- mln/math/sqrt.hh (revision 3983)
+++ mln/math/sqrt.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/math/sin.hh
--- mln/math/sin.hh (revision 3983)
+++ mln/math/sin.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/math/diff_abs.hh
--- mln/math/diff_abs.hh (revision 3983)
+++ mln/math/diff_abs.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/math/round_sat.hh
--- mln/math/round_sat.hh (revision 3983)
+++ mln/math/round_sat.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/math/sign.hh
--- mln/math/sign.hh (revision 3983)
+++ mln/math/sign.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/math/abs.hh
--- mln/math/abs.hh (revision 3983)
+++ mln/math/abs.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/math/sqr.hh
--- mln/math/sqr.hh (revision 3983)
+++ mln/math/sqr.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/math/all.hh
--- mln/math/all.hh (revision 3983)
+++ mln/math/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/math/pi.hh
--- mln/math/pi.hh (revision 3983)
+++ mln/math/pi.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/literal/colors.hh
--- mln/literal/colors.hh (revision 3983)
+++ mln/literal/colors.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/literal/one.hh
--- mln/literal/one.hh (revision 3983)
+++ mln/literal/one.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/literal/ops.hh
--- mln/literal/ops.hh (revision 3983)
+++ mln/literal/ops.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/literal/min.hh
--- mln/literal/min.hh (revision 3983)
+++ mln/literal/min.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/literal/grays.hh
--- mln/literal/grays.hh (revision 3983)
+++ mln/literal/grays.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/literal/max.hh
--- mln/literal/max.hh (revision 3983)
+++ mln/literal/max.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/literal/essential.hh
--- mln/literal/essential.hh (revision 3983)
+++ mln/literal/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/literal/origin.hh
--- mln/literal/origin.hh (revision 3983)
+++ mln/literal/origin.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/literal/all.hh
--- mln/literal/all.hh (revision 3983)
+++ mln/literal/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/literal/identity.hh
--- mln/literal/identity.hh (revision 3983)
+++ mln/literal/identity.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/literal/black.hh
--- mln/literal/black.hh (revision 3983)
+++ mln/literal/black.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/literal/zero.hh
--- mln/literal/zero.hh (revision 3983)
+++ mln/literal/zero.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/literal/white.hh
--- mln/literal/white.hh (revision 3983)
+++ mln/literal/white.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/draw/essential.hh
--- mln/draw/essential.hh (revision 3983)
+++ mln/draw/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/draw/line.hh
--- mln/draw/line.hh (revision 3983)
+++ mln/draw/line.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/draw/all.hh
--- mln/draw/all.hh (revision 3983)
+++ mln/draw/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/draw/box.hh
--- mln/draw/box.hh (revision 3983)
+++ mln/draw/box.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/draw/plot.hh
--- mln/draw/plot.hh (revision 3983)
+++ mln/draw/plot.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/graph/attribute/card.hh
--- mln/graph/attribute/card.hh (revision 3983)
+++ mln/graph/attribute/card.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/graph/attribute/representative.hh
--- mln/graph/attribute/representative.hh (revision 3983)
+++ mln/graph/attribute/representative.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/graph/essential.hh
--- mln/graph/essential.hh (revision 3983)
+++ mln/graph/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/graph/all.hh
--- mln/graph/all.hh (revision 3983)
+++ mln/graph/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/graph/compute.hh
--- mln/graph/compute.hh (revision 3983)
+++ mln/graph/compute.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/graph/labeling.hh
--- mln/graph/labeling.hh (revision 3983)
+++ mln/graph/labeling.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/graph/to_neighb.hh
--- mln/graph/to_neighb.hh (revision 3983)
+++ mln/graph/to_neighb.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/graph/to_win.hh
--- mln/graph/to_win.hh (revision 3983)
+++ mln/graph/to_win.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/opt/at.hh
--- mln/opt/at.hh (revision 3983)
+++ mln/opt/at.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/opt/essential.hh
--- mln/opt/essential.hh (revision 3983)
+++ mln/opt/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/opt/all.hh
--- mln/opt/all.hh (revision 3983)
+++ mln/opt/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/opt/element.hh
--- mln/opt/element.hh (revision 3983)
+++ mln/opt/element.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/opt/value.hh
--- mln/opt/value.hh (revision 3983)
+++ mln/opt/value.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/unqualif.hh
--- mln/metal/unqualif.hh (revision 3983)
+++ mln/metal/unqualif.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/ands.hh
--- mln/metal/ands.hh (revision 3983)
+++ mln/metal/ands.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/fix_return.hh
--- mln/metal/fix_return.hh (revision 3983)
+++ mln/metal/fix_return.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/const.hh
--- mln/metal/const.hh (revision 3983)
+++ mln/metal/const.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/not_equal.hh
--- mln/metal/not_equal.hh (revision 3983)
+++ mln/metal/not_equal.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/is_not_ref.hh
--- mln/metal/is_not_ref.hh (revision 3983)
+++ mln/metal/is_not_ref.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/unconst.hh
--- mln/metal/unconst.hh (revision 3983)
+++ mln/metal/unconst.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/ret.hh
--- mln/metal/ret.hh (revision 3983)
+++ mln/metal/ret.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/math/root.hh
--- mln/metal/math/root.hh (revision 3983)
+++ mln/metal/math/root.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/math/max.hh
--- mln/metal/math/max.hh (revision 3983)
+++ mln/metal/math/max.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/math/pow.hh
--- mln/metal/math/pow.hh (revision 3983)
+++ mln/metal/math/pow.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/math/all.hh
--- mln/metal/math/all.hh (revision 3983)
+++ mln/metal/math/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/math/sqrt.hh
--- mln/metal/math/sqrt.hh (revision 3983)
+++ mln/metal/math/sqrt.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/is_not_a.hh
--- mln/metal/is_not_a.hh (revision 3983)
+++ mln/metal/is_not_a.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/bool.hh
--- mln/metal/bool.hh (revision 3983)
+++ mln/metal/bool.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/if.hh
--- mln/metal/if.hh (revision 3983)
+++ mln/metal/if.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/same_point.hh
--- mln/metal/same_point.hh (revision 3983)
+++ mln/metal/same_point.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/is_not_const.hh
--- mln/metal/is_not_const.hh (revision 3983)
+++ mln/metal/is_not_const.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/is_ref.hh
--- mln/metal/is_ref.hh (revision 3983)
+++ mln/metal/is_ref.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/equal.hh
--- mln/metal/equal.hh (revision 3983)
+++ mln/metal/equal.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/abort.hh
--- mln/metal/abort.hh (revision 3983)
+++ mln/metal/abort.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/unptr.hh
--- mln/metal/unptr.hh (revision 3983)
+++ mln/metal/unptr.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/all.hh
--- mln/metal/all.hh (revision 3983)
+++ mln/metal/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/templated_by.hh
--- mln/metal/templated_by.hh (revision 3983)
+++ mln/metal/templated_by.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/same_coord.hh
--- mln/metal/same_coord.hh (revision 3983)
+++ mln/metal/same_coord.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/is_a.hh
--- mln/metal/is_a.hh (revision 3983)
+++ mln/metal/is_a.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/vec.hh
--- mln/metal/vec.hh (revision 3983)
+++ mln/metal/vec.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/array.hh
--- mln/metal/array.hh (revision 3983)
+++ mln/metal/array.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/bexpr.hh
--- mln/metal/bexpr.hh (revision 3983)
+++ mln/metal/bexpr.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/is_const.hh
--- mln/metal/is_const.hh (revision 3983)
+++ mln/metal/is_const.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/mat.hh
--- mln/metal/mat.hh (revision 3983)
+++ mln/metal/mat.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/essential.hh
--- mln/metal/essential.hh (revision 3983)
+++ mln/metal/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/int.hh
--- mln/metal/int.hh (revision 3983)
+++ mln/metal/int.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/is_not.hh
--- mln/metal/is_not.hh (revision 3983)
+++ mln/metal/is_not.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/none.hh
--- mln/metal/none.hh (revision 3983)
+++ mln/metal/none.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/goes_to.hh
--- mln/metal/goes_to.hh (revision 3983)
+++ mln/metal/goes_to.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/array1d.hh
--- mln/metal/array1d.hh (revision 3983)
+++ mln/metal/array1d.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/array2d.hh
--- mln/metal/array2d.hh (revision 3983)
+++ mln/metal/array2d.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/array3d.hh
--- mln/metal/array3d.hh (revision 3983)
+++ mln/metal/array3d.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/converts_to.hh
--- mln/metal/converts_to.hh (revision 3983)
+++ mln/metal/converts_to.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/is.hh
--- mln/metal/is.hh (revision 3983)
+++ mln/metal/is.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/ref.hh
--- mln/metal/ref.hh (revision 3983)
+++ mln/metal/ref.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/is_unqualif.hh
--- mln/metal/is_unqualif.hh (revision 3983)
+++ mln/metal/is_unqualif.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/metal/unref.hh
--- mln/metal/unref.hh (revision 3983)
+++ mln/metal/unref.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/transformation/essential.hh
--- mln/transformation/essential.hh (revision 3983)
+++ mln/transformation/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/transformation/all.hh
--- mln/transformation/all.hh (revision 3983)
+++ mln/transformation/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/transformation/rotate.hh
--- mln/transformation/rotate.hh (revision 3983)
+++ mln/transformation/rotate.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/all.hh
--- mln/all.hh (revision 3983)
+++ mln/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/arith/times.hh
--- mln/arith/times.hh (revision 3983)
+++ mln/arith/times.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/arith/div.hh
--- mln/arith/div.hh (revision 3983)
+++ mln/arith/div.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/arith/min.hh
--- mln/arith/min.hh (revision 3983)
+++ mln/arith/min.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/arith/plus.hh
--- mln/arith/plus.hh (revision 3983)
+++ mln/arith/plus.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/arith/includes.hh
--- mln/arith/includes.hh (revision 3983)
+++ mln/arith/includes.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/arith/essential.hh
--- mln/arith/essential.hh (revision 3983)
+++ mln/arith/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/arith/revert.hh
--- mln/arith/revert.hh (revision 3983)
+++ mln/arith/revert.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/arith/times.spe.hh
--- mln/arith/times.spe.hh (revision 3983)
+++ mln/arith/times.spe.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/arith/all.hh
--- mln/arith/all.hh (revision 3983)
+++ mln/arith/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/arith/div.spe.hh
--- mln/arith/div.spe.hh (revision 3983)
+++ mln/arith/div.spe.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/arith/min.spe.hh
--- mln/arith/min.spe.hh (revision 3983)
+++ mln/arith/min.spe.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/arith/minus.hh
--- mln/arith/minus.hh (revision 3983)
+++ mln/arith/minus.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/arith/diff_abs.hh
--- mln/arith/diff_abs.hh (revision 3983)
+++ mln/arith/diff_abs.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/arith/revert.spe.hh
--- mln/arith/revert.spe.hh (revision 3983)
+++ mln/arith/revert.spe.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/update.hh
--- mln/data/update.hh (revision 3983)
+++ mln/data/update.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/fill_with_image.hh
--- mln/data/fill_with_image.hh (revision 3983)
+++ mln/data/fill_with_image.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/fill.hh
--- mln/data/fill.hh (revision 3983)
+++ mln/data/fill.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/was.median.hh
--- mln/data/was.median.hh (revision 3983)
+++ mln/data/was.median.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/memcpy_.hh
--- mln/data/memcpy_.hh (revision 3983)
+++ mln/data/memcpy_.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/transform.spe.hh
--- mln/data/transform.spe.hh (revision 3983)
+++ mln/data/transform.spe.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/paste.spe.hh
--- mln/data/paste.spe.hh (revision 3983)
+++ mln/data/paste.spe.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/fill_with_value.spe.hh
--- mln/data/fill_with_value.spe.hh (revision 3983)
+++ mln/data/fill_with_value.spe.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/to_enc.hh
--- mln/data/to_enc.hh (revision 3983)
+++ mln/data/to_enc.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/all.hh
--- mln/data/all.hh (revision 3983)
+++ mln/data/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/transform.hh
--- mln/data/transform.hh (revision 3983)
+++ mln/data/transform.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/replace.hh
--- mln/data/replace.hh (revision 3983)
+++ mln/data/replace.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/approx/essential.hh
--- mln/data/approx/essential.hh (revision 3983)
+++ mln/data/approx/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/approx/all.hh
--- mln/data/approx/all.hh (revision 3983)
+++ mln/data/approx/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/approx/median.hh
--- mln/data/approx/median.hh (revision 3983)
+++ mln/data/approx/median.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/apply.spe.hh
--- mln/data/apply.spe.hh (revision 3983)
+++ mln/data/apply.spe.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/paste.hh
--- mln/data/paste.hh (revision 3983)
+++ mln/data/paste.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/stretch.hh
--- mln/data/stretch.hh (revision 3983)
+++ mln/data/stretch.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/fill_with_value.hh
--- mln/data/fill_with_value.hh (revision 3983)
+++ mln/data/fill_with_value.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/sort_offsets.hh
--- mln/data/sort_offsets.hh (revision 3983)
+++ mln/data/sort_offsets.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/apply.hh
--- mln/data/apply.hh (revision 3983)
+++ mln/data/apply.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/compare.hh
--- mln/data/compare.hh (revision 3983)
+++ mln/data/compare.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/essential.hh
--- mln/data/essential.hh (revision 3983)
+++ mln/data/essential.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/saturate.hh
--- mln/data/saturate.hh (revision 3983)
+++ mln/data/saturate.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/memset_.hh
--- mln/data/memset_.hh (revision 3983)
+++ mln/data/memset_.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/median.hh
--- mln/data/median.hh (revision 3983)
+++ mln/data/median.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/naive/essential.hh
--- mln/data/naive/essential.hh (revision 3983)
+++ mln/data/naive/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/naive/all.hh
--- mln/data/naive/all.hh (revision 3983)
+++ mln/data/naive/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/naive/median.hh
--- mln/data/naive/median.hh (revision 3983)
+++ mln/data/naive/median.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/abs.hh
--- mln/data/abs.hh (revision 3983)
+++ mln/data/abs.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/transform_inplace.hh
--- mln/data/transform_inplace.hh (revision 3983)
+++ mln/data/transform_inplace.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/paste_without_localization.hh
--- mln/data/paste_without_localization.hh (revision 3983)
+++ mln/data/paste_without_localization.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/fill_with_image.spe.hh
--- mln/data/fill_with_image.spe.hh (revision 3983)
+++ mln/data/fill_with_image.spe.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/fast_median.hh
--- mln/data/fast_median.hh (revision 3983)
+++ mln/data/fast_median.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/compute.hh
--- mln/data/compute.hh (revision 3983)
+++ mln/data/compute.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/sort_psites.hh
--- mln/data/sort_psites.hh (revision 3983)
+++ mln/data/sort_psites.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/data/convert.hh
--- mln/data/convert.hh (revision 3983)
+++ mln/data/convert.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/linear/log.hh
--- mln/linear/log.hh (revision 3983)
+++ mln/linear/log.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/linear/ch_convolve.hh
--- mln/linear/ch_convolve.hh (revision 3983)
+++ mln/linear/ch_convolve.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/linear/essential.hh
--- mln/linear/essential.hh (revision 3983)
+++ mln/linear/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/linear/all.hh
--- mln/linear/all.hh (revision 3983)
+++ mln/linear/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/linear/convolve_directional.hh
--- mln/linear/convolve_directional.hh (revision 3983)
+++ mln/linear/convolve_directional.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/linear/convolve_2x1d.hh
--- mln/linear/convolve_2x1d.hh (revision 3983)
+++ mln/linear/convolve_2x1d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/linear/sobel_2d.hh
--- mln/linear/sobel_2d.hh (revision 3983)
+++ mln/linear/sobel_2d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/linear/gaussian.hh
--- mln/linear/gaussian.hh (revision 3983)
+++ mln/linear/gaussian.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2001, 2002, 2003, 2004, 2008, 2009 EPITA Research and
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/linear/convolve.hh
--- mln/linear/convolve.hh (revision 3983)
+++ mln/linear/convolve.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/linear/local/convolve.hh
--- mln/linear/local/convolve.hh (revision 3983)
+++ mln/linear/local/convolve.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/linear/lap.hh
--- mln/linear/lap.hh (revision 3983)
+++ mln/linear/lap.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/linear/gaussian/impl.hh
--- mln/linear/gaussian/impl.hh (revision 3983)
+++ mln/linear/gaussian/impl.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2001, 2002, 2003, 2004, 2008, 2009 EPITA Research and
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/linear/gaussian/filter.hh
--- mln/linear/gaussian/filter.hh (revision 3983)
+++ mln/linear/gaussian/filter.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2001, 2002, 2003, 2004, 2008, 2009 EPITA Research and
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/linear/gaussian/internal/coefficients.hh
--- mln/linear/gaussian/internal/coefficients.hh (revision 3983)
+++ mln/linear/gaussian/internal/coefficients.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2001, 2002, 2003, 2004, 2008, 2009 EPITA Research and
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/linear/gaussian_directional_2d.hh
--- mln/linear/gaussian_directional_2d.hh (revision 3983)
+++ mln/linear/gaussian_directional_2d.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/linear/gaussian_1d.hh
--- mln/linear/gaussian_1d.hh (revision 3983)
+++ mln/linear/gaussian_1d.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/extract/hue.hh
--- mln/extract/hue.hh (revision 3983)
+++ mln/extract/hue.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/extract/blue.hh
--- mln/extract/blue.hh (revision 3983)
+++ mln/extract/blue.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/extract/essential.hh
--- mln/extract/essential.hh (revision 3983)
+++ mln/extract/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/extract/sat.hh
--- mln/extract/sat.hh (revision 3983)
+++ mln/extract/sat.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/extract/all.hh
--- mln/extract/all.hh (revision 3983)
+++ mln/extract/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/extract/red.hh
--- mln/extract/red.hh (revision 3983)
+++ mln/extract/red.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/extract/lum.hh
--- mln/extract/lum.hh (revision 3983)
+++ mln/extract/lum.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/extract/green.hh
--- mln/extract/green.hh (revision 3983)
+++ mln/extract/green.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/transform/distance_and_influence_zone_geodesic.hh
--- mln/transform/distance_and_influence_zone_geodesic.hh (revision 3983)
+++ mln/transform/distance_and_influence_zone_geodesic.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/transform/distance_front.hh
--- mln/transform/distance_front.hh (revision 3983)
+++ mln/transform/distance_front.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/transform/distance_and_closest_point_geodesic.hh
--- mln/transform/distance_and_closest_point_geodesic.hh (revision 3983)
+++ mln/transform/distance_and_closest_point_geodesic.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/transform/influence_zone_geodesic.hh
--- mln/transform/influence_zone_geodesic.hh (revision 3983)
+++ mln/transform/influence_zone_geodesic.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/transform/essential.hh
--- mln/transform/essential.hh (revision 3983)
+++ mln/transform/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/transform/all.hh
--- mln/transform/all.hh (revision 3983)
+++ mln/transform/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/transform/hough.hh
--- mln/transform/hough.hh (revision 3983)
+++ mln/transform/hough.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/transform/influence_zone_front.hh
--- mln/transform/influence_zone_front.hh (revision 3983)
+++ mln/transform/influence_zone_front.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/transform/distance_geodesic.hh
--- mln/transform/distance_geodesic.hh (revision 3983)
+++ mln/transform/distance_geodesic.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/transform/internal/influence_zone_functor.hh
--- mln/transform/internal/influence_zone_functor.hh (revision 3983)
+++ mln/transform/internal/influence_zone_functor.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/transform/internal/closest_point_functor.hh
--- mln/transform/internal/closest_point_functor.hh (revision 3983)
+++ mln/transform/internal/closest_point_functor.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/transform/internal/all.hh
--- mln/transform/internal/all.hh (revision 3983)
+++ mln/transform/internal/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/transform/internal/distance_functor.hh
--- mln/transform/internal/distance_functor.hh (revision 3983)
+++ mln/transform/internal/distance_functor.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/tag/init.hh
--- mln/tag/init.hh (revision 3983)
+++ mln/tag/init.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/tag/skeleton.hh
--- mln/tag/skeleton.hh (revision 3983)
+++ mln/tag/skeleton.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/tag/essential.hh
--- mln/tag/essential.hh (revision 3983)
+++ mln/tag/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/tag/all.hh
--- mln/tag/all.hh (revision 3983)
+++ mln/tag/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/site_set/essential.hh
--- mln/accu/site_set/essential.hh (revision 3983)
+++ mln/accu/site_set/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/site_set/all.hh
--- mln/accu/site_set/all.hh (revision 3983)
+++ mln/accu/site_set/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/site_set/rectangularity.hh
--- mln/accu/site_set/rectangularity.hh (revision 3983)
+++ mln/accu/site_set/rectangularity.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/nil.hh
--- mln/accu/nil.hh (revision 3983)
+++ mln/accu/nil.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/transform_line.hh
--- mln/accu/transform_line.hh (revision 3983)
+++ mln/accu/transform_line.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/image/take_n_times.hh
--- mln/accu/image/take_n_times.hh (revision 3983)
+++ mln/accu/image/take_n_times.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/image/init.hh
--- mln/accu/image/init.hh (revision 3983)
+++ mln/accu/image/init.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/image/take.hh
--- mln/accu/image/take.hh (revision 3983)
+++ mln/accu/image/take.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/image/essential.hh
--- mln/accu/image/essential.hh (revision 3983)
+++ mln/accu/image/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/image/set_value.hh
--- mln/accu/image/set_value.hh (revision 3983)
+++ mln/accu/image/set_value.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/image/untake.hh
--- mln/accu/image/untake.hh (revision 3983)
+++ mln/accu/image/untake.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/image/all.hh
--- mln/accu/image/all.hh (revision 3983)
+++ mln/accu/image/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/image/take_as_init.hh
--- mln/accu/image/take_as_init.hh (revision 3983)
+++ mln/accu/image/take_as_init.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/image/to_result.hh
--- mln/accu/image/to_result.hh (revision 3983)
+++ mln/accu/image/to_result.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/count_adjacent_vertices.hh
--- mln/accu/count_adjacent_vertices.hh (revision 3983)
+++ mln/accu/count_adjacent_vertices.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/transform_directional.hh
--- mln/accu/transform_directional.hh (revision 3983)
+++ mln/accu/transform_directional.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/tuple.hh
--- mln/accu/tuple.hh (revision 3983)
+++ mln/accu/tuple.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/pair.hh
--- mln/accu/pair.hh (revision 3983)
+++ mln/accu/pair.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/lor.hh
--- mln/accu/lor.hh (revision 3983)
+++ mln/accu/lor.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/label_used.hh
--- mln/accu/label_used.hh (revision 3983)
+++ mln/accu/label_used.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/sum.hh
--- mln/accu/sum.hh (revision 3983)
+++ mln/accu/sum.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/all.hh
--- mln/accu/all.hh (revision 3983)
+++ mln/accu/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/transform_diagonal.hh
--- mln/accu/transform_diagonal.hh (revision 3983)
+++ mln/accu/transform_diagonal.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/max_site.hh
--- mln/accu/max_site.hh (revision 3983)
+++ mln/accu/max_site.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/count_labels.hh
--- mln/accu/count_labels.hh (revision 3983)
+++ mln/accu/count_labels.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/transform.hh
--- mln/accu/transform.hh (revision 3983)
+++ mln/accu/transform.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/inf.hh
--- mln/accu/inf.hh (revision 3983)
+++ mln/accu/inf.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/internal/couple.hh
--- mln/accu/internal/couple.hh (revision 3983)
+++ mln/accu/internal/couple.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/internal/base.hh
--- mln/accu/internal/base.hh (revision 3983)
+++ mln/accu/internal/base.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/maj_h.hh
--- mln/accu/maj_h.hh (revision 3983)
+++ mln/accu/maj_h.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/land_basic.hh
--- mln/accu/land_basic.hh (revision 3983)
+++ mln/accu/land_basic.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/transform_stop.hh
--- mln/accu/transform_stop.hh (revision 3983)
+++ mln/accu/transform_stop.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/center.hh
--- mln/accu/center.hh (revision 3983)
+++ mln/accu/center.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/min.hh
--- mln/accu/min.hh (revision 3983)
+++ mln/accu/min.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/take.hh
--- mln/accu/take.hh (revision 3983)
+++ mln/accu/take.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/max.hh
--- mln/accu/max.hh (revision 3983)
+++ mln/accu/max.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/histo.hh
--- mln/accu/histo.hh (revision 3983)
+++ mln/accu/histo.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/line.hh
--- mln/accu/line.hh (revision 3983)
+++ mln/accu/line.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/essential.hh
--- mln/accu/essential.hh (revision 3983)
+++ mln/accu/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/count.hh
--- mln/accu/count.hh (revision 3983)
+++ mln/accu/count.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/min_max.hh
--- mln/accu/min_max.hh (revision 3983)
+++ mln/accu/min_max.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/min_h.hh
--- mln/accu/min_h.hh (revision 3983)
+++ mln/accu/min_h.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/bbox.hh
--- mln/accu/bbox.hh (revision 3983)
+++ mln/accu/bbox.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/convolve.hh
--- mln/accu/convolve.hh (revision 3983)
+++ mln/accu/convolve.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/rank.hh
--- mln/accu/rank.hh (revision 3983)
+++ mln/accu/rank.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/transform_snake.hh
--- mln/accu/transform_snake.hh (revision 3983)
+++ mln/accu/transform_snake.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/max_h.hh
--- mln/accu/max_h.hh (revision 3983)
+++ mln/accu/max_h.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/median_alt.hh
--- mln/accu/median_alt.hh (revision 3983)
+++ mln/accu/median_alt.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/lor_basic.hh
--- mln/accu/lor_basic.hh (revision 3983)
+++ mln/accu/lor_basic.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/p.hh
--- mln/accu/p.hh (revision 3983)
+++ mln/accu/p.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/rms.hh
--- mln/accu/rms.hh (revision 3983)
+++ mln/accu/rms.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/rank_high_quant.hh
--- mln/accu/rank_high_quant.hh (revision 3983)
+++ mln/accu/rank_high_quant.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/median_h.hh
--- mln/accu/median_h.hh (revision 3983)
+++ mln/accu/median_h.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/v.hh
--- mln/accu/v.hh (revision 3983)
+++ mln/accu/v.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/rank_bool.hh
--- mln/accu/rank_bool.hh (revision 3983)
+++ mln/accu/rank_bool.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/volume.hh
--- mln/accu/volume.hh (revision 3983)
+++ mln/accu/volume.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/sup.hh
--- mln/accu/sup.hh (revision 3983)
+++ mln/accu/sup.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/height.hh
--- mln/accu/height.hh (revision 3983)
+++ mln/accu/height.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/compute.hh
--- mln/accu/compute.hh (revision 3983)
+++ mln/accu/compute.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/stat/deviation.hh
--- mln/accu/stat/deviation.hh (revision 3983)
+++ mln/accu/stat/deviation.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/stat/var.hh
--- mln/accu/stat/var.hh (revision 3983)
+++ mln/accu/stat/var.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/stat/variance.hh
--- mln/accu/stat/variance.hh (revision 3983)
+++ mln/accu/stat/variance.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/stat/all.hh
--- mln/accu/stat/all.hh (revision 3983)
+++ mln/accu/stat/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/land.hh
--- mln/accu/land.hh (revision 3983)
+++ mln/accu/land.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/accu/mean.hh
--- mln/accu/mean.hh (revision 3983)
+++ mln/accu/mean.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/int_s32.hh
--- mln/value/int_s32.hh (revision 3983)
+++ mln/value/int_s32.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/other.hh
--- mln/value/other.hh (revision 3983)
+++ mln/value/other.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/proxy.hh
--- mln/value/proxy.hh (revision 3983)
+++ mln/value/proxy.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/int_u12.hh
--- mln/value/int_u12.hh (revision 3983)
+++ mln/value/int_u12.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/int_u32.hh
--- mln/value/int_u32.hh (revision 3983)
+++ mln/value/int_u32.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/int_s16.hh
--- mln/value/int_s16.hh (revision 3983)
+++ mln/value/int_s16.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/interval.hh
--- mln/value/interval.hh (revision 3983)
+++ mln/value/interval.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/mixin.hh
--- mln/value/mixin.hh (revision 3983)
+++ mln/value/mixin.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/int_u16.hh
--- mln/value/int_u16.hh (revision 3983)
+++ mln/value/int_u16.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/hsl.hh
--- mln/value/hsl.hh (revision 3983)
+++ mln/value/hsl.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/cast.hh
--- mln/value/cast.hh (revision 3983)
+++ mln/value/cast.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/graylevel.hh
--- mln/value/graylevel.hh (revision 3983)
+++ mln/value/graylevel.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2006, 2007, 2008 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/float01_8.hh
--- mln/value/float01_8.hh (revision 3983)
+++ mln/value/float01_8.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/graylevel_f.hh
--- mln/value/graylevel_f.hh (revision 3983)
+++ mln/value/graylevel_f.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2006, 2007, 2008 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/sign.hh
--- mln/value/sign.hh (revision 3983)
+++ mln/value/sign.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/ops.hh
--- mln/value/ops.hh (revision 3983)
+++ mln/value/ops.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/lut_vec.hh
--- mln/value/lut_vec.hh (revision 3983)
+++ mln/value/lut_vec.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/rgb8.hh
--- mln/value/rgb8.hh (revision 3983)
+++ mln/value/rgb8.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/scalar.hh
--- mln/value/scalar.hh (revision 3983)
+++ mln/value/scalar.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2006, 2007, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/float01_.hh
--- mln/value/float01_.hh (revision 3983)
+++ mln/value/float01_.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2006, 2007, 2008 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/label_8.hh
--- mln/value/label_8.hh (revision 3983)
+++ mln/value/label_8.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/shell.hh
--- mln/value/shell.hh (revision 3983)
+++ mln/value/shell.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/glf.hh
--- mln/value/glf.hh (revision 3983)
+++ mln/value/glf.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/all.hh
--- mln/value/all.hh (revision 3983)
+++ mln/value/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/int_s.hh
--- mln/value/int_s.hh (revision 3983)
+++ mln/value/int_s.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/int_u.hh
--- mln/value/int_u.hh (revision 3983)
+++ mln/value/int_u.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/internal/gray_.hh
--- mln/value/internal/gray_.hh (revision 3983)
+++ mln/value/internal/gray_.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2006, 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/internal/limits.hh
--- mln/value/internal/limits.hh (revision 3983)
+++ mln/value/internal/limits.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/internal/iterable_set.hh
--- mln/value/internal/iterable_set.hh (revision 3983)
+++ mln/value/internal/iterable_set.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/internal/encoding.hh
--- mln/value/internal/encoding.hh (revision 3983)
+++ mln/value/internal/encoding.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/internal/essential.hh
--- mln/value/internal/essential.hh (revision 3983)
+++ mln/value/internal/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/internal/gray_f.hh
--- mln/value/internal/gray_f.hh (revision 3983)
+++ mln/value/internal/gray_f.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2006, 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/internal/all.hh
--- mln/value/internal/all.hh (revision 3983)
+++ mln/value/internal/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/internal/integer.hh
--- mln/value/internal/integer.hh (revision 3983)
+++ mln/value/internal/integer.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/internal/convert.hh
--- mln/value/internal/convert.hh (revision 3983)
+++ mln/value/internal/convert.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/internal/value_like.hh
--- mln/value/internal/value_like.hh (revision 3983)
+++ mln/value/internal/value_like.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/rgb16.hh
--- mln/value/rgb16.hh (revision 3983)
+++ mln/value/rgb16.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/aliases.hh
--- mln/value/aliases.hh (revision 3983)
+++ mln/value/aliases.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/hsi.hh
--- mln/value/hsi.hh (revision 3983)
+++ mln/value/hsi.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/label_16.hh
--- mln/value/label_16.hh (revision 3983)
+++ mln/value/label_16.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/int_u_sat.hh
--- mln/value/int_u_sat.hh (revision 3983)
+++ mln/value/int_u_sat.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/essential.hh
--- mln/value/essential.hh (revision 3983)
+++ mln/value/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/equiv.hh
--- mln/value/equiv.hh (revision 3983)
+++ mln/value/equiv.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/viter.hh
--- mln/value/viter.hh (revision 3983)
+++ mln/value/viter.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/gl8.hh
--- mln/value/gl8.hh (revision 3983)
+++ mln/value/gl8.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/super_value.hh
--- mln/value/super_value.hh (revision 3983)
+++ mln/value/super_value.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/set.hh
--- mln/value/set.hh (revision 3983)
+++ mln/value/set.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/concept/symbolic.hh
--- mln/value/concept/symbolic.hh (revision 3983)
+++ mln/value/concept/symbolic.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007. 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/concept/floating.hh
--- mln/value/concept/floating.hh (revision 3983)
+++ mln/value/concept/floating.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/concept/structured.hh
--- mln/value/concept/structured.hh (revision 3983)
+++ mln/value/concept/structured.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/concept/built_in.hh
--- mln/value/concept/built_in.hh (revision 3983)
+++ mln/value/concept/built_in.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/concept/scalar.hh
--- mln/value/concept/scalar.hh (revision 3983)
+++ mln/value/concept/scalar.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/concept/essential.hh
--- mln/value/concept/essential.hh (revision 3983)
+++ mln/value/concept/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/concept/all.hh
--- mln/value/concept/all.hh (revision 3983)
+++ mln/value/concept/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/concept/vectorial.hh
--- mln/value/concept/vectorial.hh (revision 3983)
+++ mln/value/concept/vectorial.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/concept/data.hh
--- mln/value/concept/data.hh (revision 3983)
+++ mln/value/concept/data.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/concept/integer.hh
--- mln/value/concept/integer.hh (revision 3983)
+++ mln/value/concept/integer.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/int_s8.hh
--- mln/value/int_s8.hh (revision 3983)
+++ mln/value/int_s8.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/stack.hh
--- mln/value/stack.hh (revision 3983)
+++ mln/value/stack.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/int_u8.hh
--- mln/value/int_u8.hh (revision 3983)
+++ mln/value/int_u8.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/float01.hh
--- mln/value/float01.hh (revision 3983)
+++ mln/value/float01.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2006, 2007, 2008 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/builtin/ops.hh
--- mln/value/builtin/ops.hh (revision 3983)
+++ mln/value/builtin/ops.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/builtin/symbolics.hh
--- mln/value/builtin/symbolics.hh (revision 3983)
+++ mln/value/builtin/symbolics.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/builtin/carrays.hh
--- mln/value/builtin/carrays.hh (revision 3983)
+++ mln/value/builtin/carrays.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/builtin/floatings.hh
--- mln/value/builtin/floatings.hh (revision 3983)
+++ mln/value/builtin/floatings.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/builtin/essential.hh
--- mln/value/builtin/essential.hh (revision 3983)
+++ mln/value/builtin/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/builtin/all.hh
--- mln/value/builtin/all.hh (revision 3983)
+++ mln/value/builtin/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/builtin/promotions.hh
--- mln/value/builtin/promotions.hh (revision 3983)
+++ mln/value/builtin/promotions.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/builtin/integers.hh
--- mln/value/builtin/integers.hh (revision 3983)
+++ mln/value/builtin/integers.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/gl16.hh
--- mln/value/gl16.hh (revision 3983)
+++ mln/value/gl16.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/rgb.hh
--- mln/value/rgb.hh (revision 3983)
+++ mln/value/rgb.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/float01_f.hh
--- mln/value/float01_f.hh (revision 3983)
+++ mln/value/float01_f.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2006, 2007, 2008 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/float01_16.hh
--- mln/value/float01_16.hh (revision 3983)
+++ mln/value/float01_16.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/value/label.hh
--- mln/value/label.hh (revision 3983)
+++ mln/value/label.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/border/resize.hh
--- mln/border/resize.hh (revision 3983)
+++ mln/border/resize.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/border/fill.hh
--- mln/border/fill.hh (revision 3983)
+++ mln/border/fill.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/border/essential.hh
--- mln/border/essential.hh (revision 3983)
+++ mln/border/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/border/all.hh
--- mln/border/all.hh (revision 3983)
+++ mln/border/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/border/resize_equal.hh
--- mln/border/resize_equal.hh (revision 3983)
+++ mln/border/resize_equal.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/border/adjust.hh
--- mln/border/adjust.hh (revision 3983)
+++ mln/border/adjust.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/border/duplicate.hh
--- mln/border/duplicate.hh (revision 3983)
+++ mln/border/duplicate.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/border/mirror.hh
--- mln/border/mirror.hh (revision 3983)
+++ mln/border/mirror.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/border/thickness.hh
--- mln/border/thickness.hh (revision 3983)
+++ mln/border/thickness.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/border/equalize.hh
--- mln/border/equalize.hh (revision 3983)
+++ mln/border/equalize.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/border/get.hh
--- mln/border/get.hh (revision 3983)
+++ mln/border/get.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/border/find.hh
--- mln/border/find.hh (revision 3983)
+++ mln/border/find.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/dummy_p_edges.hh
--- mln/make/dummy_p_edges.hh (revision 3983)
+++ mln/make/dummy_p_edges.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/influence_zone_adjacency_graph.hh
--- mln/make/influence_zone_adjacency_graph.hh (revision 3983)
+++ mln/make/influence_zone_adjacency_graph.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/rag_and_labeled_wsl.hh
--- mln/make/rag_and_labeled_wsl.hh (revision 3983)
+++ mln/make/rag_and_labeled_wsl.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/dpoint2d_h.hh
--- mln/make/dpoint2d_h.hh (revision 3983)
+++ mln/make/dpoint2d_h.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/w_window.hh
--- mln/make/w_window.hh (revision 3983)
+++ mln/make/w_window.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/pix.hh
--- mln/make/pix.hh (revision 3983)
+++ mln/make/pix.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/p_vertices_with_mass_centers.hh
--- mln/make/p_vertices_with_mass_centers.hh (revision 3983)
+++ mln/make/p_vertices_with_mass_centers.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/region_adjacency_graph.hh
--- mln/make/region_adjacency_graph.hh (revision 3983)
+++ mln/make/region_adjacency_graph.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/p_edges_with_mass_centers.hh
--- mln/make/p_edges_with_mass_centers.hh (revision 3983)
+++ mln/make/p_edges_with_mass_centers.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/all.hh
--- mln/make/all.hh (revision 3983)
+++ mln/make/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/double_neighb2d.hh
--- mln/make/double_neighb2d.hh (revision 3983)
+++ mln/make/double_neighb2d.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/vec.hh
--- mln/make/vec.hh (revision 3983)
+++ mln/make/vec.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/box1d.hh
--- mln/make/box1d.hh (revision 3983)
+++ mln/make/box1d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/box2d.hh
--- mln/make/box2d.hh (revision 3983)
+++ mln/make/box2d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/dummy_p_vertices.hh
--- mln/make/dummy_p_vertices.hh (revision 3983)
+++ mln/make/dummy_p_vertices.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/box3d.hh
--- mln/make/box3d.hh (revision 3983)
+++ mln/make/box3d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/pixel.hh
--- mln/make/pixel.hh (revision 3983)
+++ mln/make/pixel.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/mat.hh
--- mln/make/mat.hh (revision 3983)
+++ mln/make/mat.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/w_window1d.hh
--- mln/make/w_window1d.hh (revision 3983)
+++ mln/make/w_window1d.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/win_chamfer.hh
--- mln/make/win_chamfer.hh (revision 3983)
+++ mln/make/win_chamfer.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2006, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/image.hh
--- mln/make/image.hh (revision 3983)
+++ mln/make/image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/w_window2d.hh
--- mln/make/w_window2d.hh (revision 3983)
+++ mln/make/w_window2d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/w_window3d.hh
--- mln/make/w_window3d.hh (revision 3983)
+++ mln/make/w_window3d.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/box2d_h.hh
--- mln/make/box2d_h.hh (revision 3983)
+++ mln/make/box2d_h.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/point2d_h.hh
--- mln/make/point2d_h.hh (revision 3983)
+++ mln/make/point2d_h.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/essential.hh
--- mln/make/essential.hh (revision 3983)
+++ mln/make/essential.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/attachment.hh
--- mln/make/attachment.hh (revision 3983)
+++ mln/make/attachment.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/h_mat.hh
--- mln/make/h_mat.hh (revision 3983)
+++ mln/make/h_mat.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/voronoi.hh
--- mln/make/voronoi.hh (revision 3983)
+++ mln/make/voronoi.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/w_window1d_int.hh
--- mln/make/w_window1d_int.hh (revision 3983)
+++ mln/make/w_window1d_int.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/w_window2d_int.hh
--- mln/make/w_window2d_int.hh (revision 3983)
+++ mln/make/w_window2d_int.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/w_window3d_int.hh
--- mln/make/w_window3d_int.hh (revision 3983)
+++ mln/make/w_window3d_int.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/dual_neighb.hh
--- mln/make/dual_neighb.hh (revision 3983)
+++ mln/make/dual_neighb.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/edge_image.hh
--- mln/make/edge_image.hh (revision 3983)
+++ mln/make/edge_image.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/image2d.hh
--- mln/make/image2d.hh (revision 3983)
+++ mln/make/image2d.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/image3d.hh
--- mln/make/image3d.hh (revision 3983)
+++ mln/make/image3d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/w_window_directional.hh
--- mln/make/w_window_directional.hh (revision 3983)
+++ mln/make/w_window_directional.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/detachment.hh
--- mln/make/detachment.hh (revision 3983)
+++ mln/make/detachment.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/relabelfun.hh
--- mln/make/relabelfun.hh (revision 3983)
+++ mln/make/relabelfun.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/vertex_image.hh
--- mln/make/vertex_image.hh (revision 3983)
+++ mln/make/vertex_image.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/make/cell.hh
--- mln/make/cell.hh (revision 3983)
+++ mln/make/cell.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/test/positive.hh
--- mln/test/positive.hh (revision 3983)
+++ mln/test/positive.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/test/essential.hh
--- mln/test/essential.hh (revision 3983)
+++ mln/test/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/test/all.hh
--- mln/test/all.hh (revision 3983)
+++ mln/test/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/test/predicate.hh
--- mln/test/predicate.hh (revision 3983)
+++ mln/test/predicate.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/convert/to.hh
--- mln/convert/to.hh (revision 3983)
+++ mln/convert/to.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/convert/impl/from_float_to_value.hh
--- mln/convert/impl/from_float_to_value.hh (revision 3983)
+++ mln/convert/impl/from_float_to_value.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/convert/impl/from_image_to_site_set.hh
--- mln/convert/impl/from_image_to_site_set.hh (revision 3983)
+++ mln/convert/impl/from_image_to_site_set.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/convert/impl/from_site_set_to_image.hh
--- mln/convert/impl/from_site_set_to_image.hh (revision 3983)
+++ mln/convert/impl/from_site_set_to_image.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/convert/impl/all.hh
--- mln/convert/impl/all.hh (revision 3983)
+++ mln/convert/impl/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/convert/impl/from_double_to_value.hh
--- mln/convert/impl/from_double_to_value.hh (revision 3983)
+++ mln/convert/impl/from_double_to_value.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/convert/impl/from_int_to_value.hh
--- mln/convert/impl/from_int_to_value.hh (revision 3983)
+++ mln/convert/impl/from_int_to_value.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/convert/impl/from_value_to_value.hh
--- mln/convert/impl/from_value_to_value.hh (revision 3983)
+++ mln/convert/impl/from_value_to_value.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/convert/impl/from_unsigned_to_value.hh
--- mln/convert/impl/from_unsigned_to_value.hh (revision 3983)
+++ mln/convert/impl/from_unsigned_to_value.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/convert/to_image.hh
--- mln/convert/to_image.hh (revision 3983)
+++ mln/convert/to_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/convert/to_upper_window.hh
--- mln/convert/to_upper_window.hh (revision 3983)
+++ mln/convert/to_upper_window.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/convert/from_to.hh
--- mln/convert/from_to.hh (revision 3983)
+++ mln/convert/from_to.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/convert/essential.hh
--- mln/convert/essential.hh (revision 3983)
+++ mln/convert/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/convert/all.hh
--- mln/convert/all.hh (revision 3983)
+++ mln/convert/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/convert/to_window.hh
--- mln/convert/to_window.hh (revision 3983)
+++ mln/convert/to_window.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/convert/to_fun.hh
--- mln/convert/to_fun.hh (revision 3983)
+++ mln/convert/to_fun.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/convert/to_p_set.hh
--- mln/convert/to_p_set.hh (revision 3983)
+++ mln/convert/to_p_set.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/convert/from_to.hxx
--- mln/convert/from_to.hxx (revision 3983)
+++ mln/convert/from_to.hxx (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/convert/to_dpoint.hh
--- mln/convert/to_dpoint.hh (revision 3983)
+++ mln/convert/to_dpoint.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/convert/to_p_array.hh
--- mln/convert/to_p_array.hh (revision 3983)
+++ mln/convert/to_p_array.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/estim/sum.hh
--- mln/estim/sum.hh (revision 3983)
+++ mln/estim/sum.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/estim/essential.hh
--- mln/estim/essential.hh (revision 3983)
+++ mln/estim/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/estim/all.hh
--- mln/estim/all.hh (revision 3983)
+++ mln/estim/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/estim/min_max.hh
--- mln/estim/min_max.hh (revision 3983)
+++ mln/estim/min_max.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/estim/mean.hh
--- mln/estim/mean.hh (revision 3983)
+++ mln/estim/mean.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/pw/image.hh
--- mln/pw/image.hh (revision 3983)
+++ mln/pw/image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/pw/essential.hh
--- mln/pw/essential.hh (revision 3983)
+++ mln/pw/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/pw/all.hh
--- mln/pw/all.hh (revision 3983)
+++ mln/pw/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/pw/var.hh
--- mln/pw/var.hh (revision 3983)
+++ mln/pw/var.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/pw/cst.hh
--- mln/pw/cst.hh (revision 3983)
+++ mln/pw/cst.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/pw/value.hh
--- mln/pw/value.hh (revision 3983)
+++ mln/pw/value.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/pw/internal/image_base.hh
--- mln/pw/internal/image_base.hh (revision 3983)
+++ mln/pw/internal/image_base.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/essential/1d.hh
--- mln/essential/1d.hh (revision 3983)
+++ mln/essential/1d.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/essential/2d.hh
--- mln/essential/2d.hh (revision 3983)
+++ mln/essential/2d.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/essential/routine.hh
--- mln/essential/routine.hh (revision 3983)
+++ mln/essential/routine.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/essential/3d.hh
--- mln/essential/3d.hh (revision 3983)
+++ mln/essential/3d.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/geom/max_col.hh
--- mln/geom/max_col.hh (revision 3983)
+++ mln/geom/max_col.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/geom/complex_geometry.hh
--- mln/geom/complex_geometry.hh (revision 3983)
+++ mln/geom/complex_geometry.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/geom/essential.hh
--- mln/geom/essential.hh (revision 3983)
+++ mln/geom/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/geom/nslis.hh
--- mln/geom/nslis.hh (revision 3983)
+++ mln/geom/nslis.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/geom/pmin_pmax.hh
--- mln/geom/pmin_pmax.hh (revision 3983)
+++ mln/geom/pmin_pmax.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/geom/delta.hh
--- mln/geom/delta.hh (revision 3983)
+++ mln/geom/delta.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/geom/min_sli.hh
--- mln/geom/min_sli.hh (revision 3983)
+++ mln/geom/min_sli.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/geom/bbox.hh
--- mln/geom/bbox.hh (revision 3983)
+++ mln/geom/bbox.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/geom/max_sli.hh
--- mln/geom/max_sli.hh (revision 3983)
+++ mln/geom/max_sli.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/geom/seeds2tiling.hh
--- mln/geom/seeds2tiling.hh (revision 3983)
+++ mln/geom/seeds2tiling.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/geom/seeds2tiling_roundness.hh
--- mln/geom/seeds2tiling_roundness.hh (revision 3983)
+++ mln/geom/seeds2tiling_roundness.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/geom/size1d.hh
--- mln/geom/size1d.hh (revision 3983)
+++ mln/geom/size1d.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/geom/size2d.hh
--- mln/geom/size2d.hh (revision 3983)
+++ mln/geom/size2d.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/geom/size3d.hh
--- mln/geom/size3d.hh (revision 3983)
+++ mln/geom/size3d.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/geom/chamfer.hh
--- mln/geom/chamfer.hh (revision 3983)
+++ mln/geom/chamfer.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/geom/nsites.hh
--- mln/geom/nsites.hh (revision 3983)
+++ mln/geom/nsites.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/geom/all.hh
--- mln/geom/all.hh (revision 3983)
+++ mln/geom/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/geom/nrows.hh
--- mln/geom/nrows.hh (revision 3983)
+++ mln/geom/nrows.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/geom/min_row.hh
--- mln/geom/min_row.hh (revision 3983)
+++ mln/geom/min_row.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/geom/ninds.hh
--- mln/geom/ninds.hh (revision 3983)
+++ mln/geom/ninds.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/geom/max_row.hh
--- mln/geom/max_row.hh (revision 3983)
+++ mln/geom/max_row.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/geom/min_ind.hh
--- mln/geom/min_ind.hh (revision 3983)
+++ mln/geom/min_ind.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/geom/ncols.hh
--- mln/geom/ncols.hh (revision 3983)
+++ mln/geom/ncols.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/geom/max_ind.hh
--- mln/geom/max_ind.hh (revision 3983)
+++ mln/geom/max_ind.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/geom/min_col.hh
--- mln/geom/min_col.hh (revision 3983)
+++ mln/geom/min_col.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/vv2b/implies.hh
--- mln/fun/vv2b/implies.hh (revision 3983)
+++ mln/fun/vv2b/implies.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/vv2b/eq.hh
--- mln/fun/vv2b/eq.hh (revision 3983)
+++ mln/fun/vv2b/eq.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/vv2b/all.hh
--- mln/fun/vv2b/all.hh (revision 3983)
+++ mln/fun/vv2b/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/vv2b/gt.hh
--- mln/fun/vv2b/gt.hh (revision 3983)
+++ mln/fun/vv2b/gt.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/vv2b/ge.hh
--- mln/fun/vv2b/ge.hh (revision 3983)
+++ mln/fun/vv2b/ge.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/vv2b/lt.hh
--- mln/fun/vv2b/lt.hh (revision 3983)
+++ mln/fun/vv2b/lt.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/vv2b/le.hh
--- mln/fun/vv2b/le.hh (revision 3983)
+++ mln/fun/vv2b/le.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/c.hh
--- mln/fun/c.hh (revision 3983)
+++ mln/fun/c.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/p2b/chess.hh
--- mln/fun/p2b/chess.hh (revision 3983)
+++ mln/fun/p2b/chess.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/p2b/big_chess.hh
--- mln/fun/p2b/big_chess.hh (revision 3983)
+++ mln/fun/p2b/big_chess.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/p2b/antilogy.hh
--- mln/fun/p2b/antilogy.hh (revision 3983)
+++ mln/fun/p2b/antilogy.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/p2b/essential.hh
--- mln/fun/p2b/essential.hh (revision 3983)
+++ mln/fun/p2b/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/p2b/tautology.hh
--- mln/fun/p2b/tautology.hh (revision 3983)
+++ mln/fun/p2b/tautology.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/p2b/all.hh
--- mln/fun/p2b/all.hh (revision 3983)
+++ mln/fun/p2b/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/p2b/has.hh
--- mln/fun/p2b/has.hh (revision 3983)
+++ mln/fun/p2b/has.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2w2v/cos.hh
--- mln/fun/v2w2v/cos.hh (revision 3983)
+++ mln/fun/v2w2v/cos.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2w2v/all.hh
--- mln/fun/v2w2v/all.hh (revision 3983)
+++ mln/fun/v2w2v/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/meta/hue.hh
--- mln/fun/meta/hue.hh (revision 3983)
+++ mln/fun/meta/hue.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/meta/inty.hh
--- mln/fun/meta/inty.hh (revision 3983)
+++ mln/fun/meta/inty.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/meta/blue.hh
--- mln/fun/meta/blue.hh (revision 3983)
+++ mln/fun/meta/blue.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can blueistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/meta/sat.hh
--- mln/fun/meta/sat.hh (revision 3983)
+++ mln/fun/meta/sat.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/meta/to_enc.hh
--- mln/fun/meta/to_enc.hh (revision 3983)
+++ mln/fun/meta/to_enc.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/meta/essential.hh
--- mln/fun/meta/essential.hh (revision 3983)
+++ mln/fun/meta/essential.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/meta/first.hh
--- mln/fun/meta/first.hh (revision 3983)
+++ mln/fun/meta/first.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/meta/all.hh
--- mln/fun/meta/all.hh (revision 3983)
+++ mln/fun/meta/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/meta/red.hh
--- mln/fun/meta/red.hh (revision 3983)
+++ mln/fun/meta/red.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/meta/second.hh
--- mln/fun/meta/second.hh (revision 3983)
+++ mln/fun/meta/second.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/meta/lum.hh
--- mln/fun/meta/lum.hh (revision 3983)
+++ mln/fun/meta/lum.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/meta/green.hh
--- mln/fun/meta/green.hh (revision 3983)
+++ mln/fun/meta/green.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can greenistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/spe/binary.hh
--- mln/fun/spe/binary.hh (revision 3983)
+++ mln/fun/spe/binary.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/spe/unary.hh
--- mln/fun/spe/unary.hh (revision 3983)
+++ mln/fun/spe/unary.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/cast.hh
--- mln/fun/cast.hh (revision 3983)
+++ mln/fun/cast.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/math/cos.hh
--- mln/fun/math/cos.hh (revision 3983)
+++ mln/fun/math/cos.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/math/abs.hh
--- mln/fun/math/abs.hh (revision 3983)
+++ mln/fun/math/abs.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/math/sup.hh
--- mln/fun/math/sup.hh (revision 3983)
+++ mln/fun/math/sup.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/math/norm.hh
--- mln/fun/math/norm.hh (revision 3983)
+++ mln/fun/math/norm.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/math/inf.hh
--- mln/fun/math/inf.hh (revision 3983)
+++ mln/fun/math/inf.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/point/row.hh
--- mln/fun/point/row.hh (revision 3983)
+++ mln/fun/point/row.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can rowistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/point/sli.hh
--- mln/fun/point/sli.hh (revision 3983)
+++ mln/fun/point/sli.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can rowistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/point/col.hh
--- mln/fun/point/col.hh (revision 3983)
+++ mln/fun/point/col.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can rowistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2b/essential.hh
--- mln/fun/v2b/essential.hh (revision 3983)
+++ mln/fun/v2b/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2b/all.hh
--- mln/fun/v2b/all.hh (revision 3983)
+++ mln/fun/v2b/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2b/lnot.hh
--- mln/fun/v2b/lnot.hh (revision 3983)
+++ mln/fun/v2b/lnot.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2b/threshold.hh
--- mln/fun/v2b/threshold.hh (revision 3983)
+++ mln/fun/v2b/threshold.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/unary.hh
--- mln/fun/unary.hh (revision 3983)
+++ mln/fun/unary.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/ops.hh
--- mln/fun/ops.hh (revision 3983)
+++ mln/fun/ops.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/i2v/essential.hh
--- mln/fun/i2v/essential.hh (revision 3983)
+++ mln/fun/i2v/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/i2v/value_at_index.hh
--- mln/fun/i2v/value_at_index.hh (revision 3983)
+++ mln/fun/i2v/value_at_index.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/i2v/all.hh
--- mln/fun/i2v/all.hh (revision 3983)
+++ mln/fun/i2v/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/i2v/all_to.hh
--- mln/fun/i2v/all_to.hh (revision 3983)
+++ mln/fun/i2v/all_to.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/i2v/array.hh
--- mln/fun/i2v/array.hh (revision 3983)
+++ mln/fun/i2v/array.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2i/index_of_value.hh
--- mln/fun/v2i/index_of_value.hh (revision 3983)
+++ mln/fun/v2i/index_of_value.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2i/all.hh
--- mln/fun/v2i/all.hh (revision 3983)
+++ mln/fun/v2i/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/p2p/fold.hh
--- mln/fun/p2p/fold.hh (revision 3983)
+++ mln/fun/p2p/fold.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/p2p/all.hh
--- mln/fun/p2p/all.hh (revision 3983)
+++ mln/fun/p2p/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/p2p/mirror.hh
--- mln/fun/p2p/mirror.hh (revision 3983)
+++ mln/fun/p2p/mirror.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/p2p/translation.hh
--- mln/fun/p2p/translation.hh (revision 3983)
+++ mln/fun/p2p/translation.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/composition.hh
--- mln/fun/composition.hh (revision 3983)
+++ mln/fun/composition.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/access/all.hh
--- mln/fun/access/all.hh (revision 3983)
+++ mln/fun/access/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/access/mean.hh
--- mln/fun/access/mean.hh (revision 3983)
+++ mln/fun/access/mean.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/vv2v/min.hh
--- mln/fun/vv2v/min.hh (revision 3983)
+++ mln/fun/vv2v/min.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/vv2v/lxor.hh
--- mln/fun/vv2v/lxor.hh (revision 3983)
+++ mln/fun/vv2v/lxor.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/vv2v/macros.hh
--- mln/fun/vv2v/macros.hh (revision 3983)
+++ mln/fun/vv2v/macros.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/vv2v/max.hh
--- mln/fun/vv2v/max.hh (revision 3983)
+++ mln/fun/vv2v/max.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/vv2v/essential.hh
--- mln/fun/vv2v/essential.hh (revision 3983)
+++ mln/fun/vv2v/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/vv2v/all.hh
--- mln/fun/vv2v/all.hh (revision 3983)
+++ mln/fun/vv2v/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/vv2v/lor.hh
--- mln/fun/vv2v/lor.hh (revision 3983)
+++ mln/fun/vv2v/lor.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/vv2v/diff_abs.hh
--- mln/fun/vv2v/diff_abs.hh (revision 3983)
+++ mln/fun/vv2v/diff_abs.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/vv2v/vec.hh
--- mln/fun/vv2v/vec.hh (revision 3983)
+++ mln/fun/vv2v/vec.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/vv2v/land.hh
--- mln/fun/vv2v/land.hh (revision 3983)
+++ mln/fun/vv2v/land.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/vv2v/land_not.hh
--- mln/fun/vv2v/land_not.hh (revision 3983)
+++ mln/fun/vv2v/land_not.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/all.hh
--- mln/fun/all.hh (revision 3983)
+++ mln/fun/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/p2v/elifs.hh
--- mln/fun/p2v/elifs.hh (revision 3983)
+++ mln/fun/p2v/elifs.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/p2v/ternary.hh
--- mln/fun/p2v/ternary.hh (revision 3983)
+++ mln/fun/p2v/ternary.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/p2v/essential.hh
--- mln/fun/p2v/essential.hh (revision 3983)
+++ mln/fun/p2v/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/p2v/all.hh
--- mln/fun/p2v/all.hh (revision 3983)
+++ mln/fun/p2v/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/p2v/iota.hh
--- mln/fun/p2v/iota.hh (revision 3983)
+++ mln/fun/p2v/iota.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/x2p/closest_point.hh
--- mln/fun/x2p/closest_point.hh (revision 3983)
+++ mln/fun/x2p/closest_point.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/x2p/essential.hh
--- mln/fun/x2p/essential.hh (revision 3983)
+++ mln/fun/x2p/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/x2p/all.hh
--- mln/fun/x2p/all.hh (revision 3983)
+++ mln/fun/x2p/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/internal/ch_function_value_impl.hh
--- mln/fun/internal/ch_function_value_impl.hh (revision 3983)
+++ mln/fun/internal/ch_function_value_impl.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/internal/x2x_linear_impl.hh
--- mln/fun/internal/x2x_linear_impl.hh (revision 3983)
+++ mln/fun/internal/x2x_linear_impl.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/internal/resolve.hh
--- mln/fun/internal/resolve.hh (revision 3983)
+++ mln/fun/internal/resolve.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/internal/selector.hh
--- mln/fun/internal/selector.hh (revision 3983)
+++ mln/fun/internal/selector.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/unary_param.hh
--- mln/fun/unary_param.hh (revision 3983)
+++ mln/fun/unary_param.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2v/hsl_to_rgb.hh
--- mln/fun/v2v/hsl_to_rgb.hh (revision 3983)
+++ mln/fun/v2v/hsl_to_rgb.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2v/rgb_to_hsl.hh
--- mln/fun/v2v/rgb_to_hsl.hh (revision 3983)
+++ mln/fun/v2v/rgb_to_hsl.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2v/essential.hh
--- mln/fun/v2v/essential.hh (revision 3983)
+++ mln/fun/v2v/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2v/saturate.hh
--- mln/fun/v2v/saturate.hh (revision 3983)
+++ mln/fun/v2v/saturate.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2v/cast.hh
--- mln/fun/v2v/cast.hh (revision 3983)
+++ mln/fun/v2v/cast.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2v/ch_function_value.hh
--- mln/fun/v2v/ch_function_value.hh (revision 3983)
+++ mln/fun/v2v/ch_function_value.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2v/dec.hh
--- mln/fun/v2v/dec.hh (revision 3983)
+++ mln/fun/v2v/dec.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2v/id.hh
--- mln/fun/v2v/id.hh (revision 3983)
+++ mln/fun/v2v/id.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2v/component.hh
--- mln/fun/v2v/component.hh (revision 3983)
+++ mln/fun/v2v/component.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2v/abs.hh
--- mln/fun/v2v/abs.hh (revision 3983)
+++ mln/fun/v2v/abs.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2v/enc.hh
--- mln/fun/v2v/enc.hh (revision 3983)
+++ mln/fun/v2v/enc.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2v/all.hh
--- mln/fun/v2v/all.hh (revision 3983)
+++ mln/fun/v2v/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2v/wrap.hh
--- mln/fun/v2v/wrap.hh (revision 3983)
+++ mln/fun/v2v/wrap.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2v/inc.hh
--- mln/fun/v2v/inc.hh (revision 3983)
+++ mln/fun/v2v/inc.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2v/linear.hh
--- mln/fun/v2v/linear.hh (revision 3983)
+++ mln/fun/v2v/linear.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2v/norm.hh
--- mln/fun/v2v/norm.hh (revision 3983)
+++ mln/fun/v2v/norm.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2v/projection.hh
--- mln/fun/v2v/projection.hh (revision 3983)
+++ mln/fun/v2v/projection.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2v/rgb_to_hsi.hh
--- mln/fun/v2v/rgb_to_hsi.hh (revision 3983)
+++ mln/fun/v2v/rgb_to_hsi.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2v/hsi_to_rgb.hh
--- mln/fun/v2v/hsi_to_rgb.hh (revision 3983)
+++ mln/fun/v2v/hsi_to_rgb.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2v/convert.hh
--- mln/fun/v2v/convert.hh (revision 3983)
+++ mln/fun/v2v/convert.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/x2v/bilinear.hh
--- mln/fun/x2v/bilinear.hh (revision 3983)
+++ mln/fun/x2v/bilinear.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/x2v/essential.hh
--- mln/fun/x2v/essential.hh (revision 3983)
+++ mln/fun/x2v/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/x2v/l1_norm.hh
--- mln/fun/x2v/l1_norm.hh (revision 3983)
+++ mln/fun/x2v/l1_norm.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/x2v/all.hh
--- mln/fun/x2v/all.hh (revision 3983)
+++ mln/fun/x2v/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/x2v/trilinear.hh
--- mln/fun/x2v/trilinear.hh (revision 3983)
+++ mln/fun/x2v/trilinear.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/x2v/linear.hh
--- mln/fun/x2v/linear.hh (revision 3983)
+++ mln/fun/x2v/linear.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/x2v/nneighbor.hh
--- mln/fun/x2v/nneighbor.hh (revision 3983)
+++ mln/fun/x2v/nneighbor.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/x2x/essential.hh
--- mln/fun/x2x/essential.hh (revision 3983)
+++ mln/fun/x2x/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/x2x/all.hh
--- mln/fun/x2x/all.hh (revision 3983)
+++ mln/fun/x2x/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/x2x/composed.hh
--- mln/fun/x2x/composed.hh (revision 3983)
+++ mln/fun/x2x/composed.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/x2x/translation.hh
--- mln/fun/x2x/translation.hh (revision 3983)
+++ mln/fun/x2x/translation.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/x2x/rotation.hh
--- mln/fun/x2x/rotation.hh (revision 3983)
+++ mln/fun/x2x/rotation.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/binary.hh
--- mln/fun/binary.hh (revision 3983)
+++ mln/fun/binary.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/essential.hh
--- mln/fun/essential.hh (revision 3983)
+++ mln/fun/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/from_accu.hh
--- mln/fun/from_accu.hh (revision 3983)
+++ mln/fun/from_accu.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/param.hh
--- mln/fun/param.hh (revision 3983)
+++ mln/fun/param.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/binary_param.hh
--- mln/fun/binary_param.hh (revision 3983)
+++ mln/fun/binary_param.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/component/scomp.hh
--- mln/fun/component/scomp.hh (revision 3983)
+++ mln/fun/component/scomp.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/component/ithcomp.hh
--- mln/fun/component/ithcomp.hh (revision 3983)
+++ mln/fun/component/ithcomp.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/component/comp_count.hh
--- mln/fun/component/comp_count.hh (revision 3983)
+++ mln/fun/component/comp_count.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/component/blue.hh
--- mln/fun/component/blue.hh (revision 3983)
+++ mln/fun/component/blue.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can blueistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/component/red.hh
--- mln/fun/component/red.hh (revision 3983)
+++ mln/fun/component/red.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/component/rgb.hh
--- mln/fun/component/rgb.hh (revision 3983)
+++ mln/fun/component/rgb.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/component/comp.hh
--- mln/fun/component/comp.hh (revision 3983)
+++ mln/fun/component/comp.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/component/green.hh
--- mln/fun/component/green.hh (revision 3983)
+++ mln/fun/component/green.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can greenistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/compose.hh
--- mln/fun/compose.hh (revision 3983)
+++ mln/fun/compose.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/accu_result.hh
--- mln/fun/accu_result.hh (revision 3983)
+++ mln/fun/accu_result.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/stat/all.hh
--- mln/fun/stat/all.hh (revision 3983)
+++ mln/fun/stat/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/stat/mahalanobis.hh
--- mln/fun/stat/mahalanobis.hh (revision 3983)
+++ mln/fun/stat/mahalanobis.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2w_w2v/all.hh
--- mln/fun/v2w_w2v/all.hh (revision 3983)
+++ mln/fun/v2w_w2v/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/fun/v2w_w2v/norm.hh
--- mln/fun/v2w_w2v/norm.hh (revision 3983)
+++ mln/fun/v2w_w2v/norm.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/binarization/includes.hh
--- mln/binarization/includes.hh (revision 3983)
+++ mln/binarization/includes.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/binarization/essential.hh
--- mln/binarization/essential.hh (revision 3983)
+++ mln/binarization/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/binarization/all.hh
--- mln/binarization/all.hh (revision 3983)
+++ mln/binarization/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/binarization/binarization.hh
--- mln/binarization/binarization.hh (revision 3983)
+++ mln/binarization/binarization.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/binarization/threshold.hh
--- mln/binarization/threshold.hh (revision 3983)
+++ mln/binarization/threshold.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/set/inter.hh
--- mln/set/inter.hh (revision 3983)
+++ mln/set/inter.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/set/compute_with_weights.hh
--- mln/set/compute_with_weights.hh (revision 3983)
+++ mln/set/compute_with_weights.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/set/unique.hh
--- mln/set/unique.hh (revision 3983)
+++ mln/set/unique.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/set/essential.hh
--- mln/set/essential.hh (revision 3983)
+++ mln/set/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/set/all.hh
--- mln/set/all.hh (revision 3983)
+++ mln/set/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/set/diff.hh
--- mln/set/diff.hh (revision 3983)
+++ mln/set/diff.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/set/card.hh
--- mln/set/card.hh (revision 3983)
+++ mln/set/card.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/set/has.hh
--- mln/set/has.hh (revision 3983)
+++ mln/set/has.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/set/uni.hh
--- mln/set/uni.hh (revision 3983)
+++ mln/set/uni.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/set/compute.hh
--- mln/set/compute.hh (revision 3983)
+++ mln/set/compute.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/set/get.hh
--- mln/set/get.hh (revision 3983)
+++ mln/set/get.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/set/sym_diff.hh
--- mln/set/sym_diff.hh (revision 3983)
+++ mln/set/sym_diff.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/algebra/mat.hh
--- mln/algebra/mat.hh (revision 3983)
+++ mln/algebra/mat.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2006, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/algebra/h_vec.hh
--- mln/algebra/h_vec.hh (revision 3983)
+++ mln/algebra/h_vec.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/algebra/essential.hh
--- mln/algebra/essential.hh (revision 3983)
+++ mln/algebra/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/algebra/all.hh
--- mln/algebra/all.hh (revision 3983)
+++ mln/algebra/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/algebra/h_mat.hh
--- mln/algebra/h_mat.hh (revision 3983)
+++ mln/algebra/h_mat.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/algebra/quat.hh
--- mln/algebra/quat.hh (revision 3983)
+++ mln/algebra/quat.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/algebra/vec.hh
--- mln/algebra/vec.hh (revision 3983)
+++ mln/algebra/vec.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2006, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/win/inter.hh
--- mln/win/inter.hh (revision 3983)
+++ mln/win/inter.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/win/multiple_size.hh
--- mln/win/multiple_size.hh (revision 3983)
+++ mln/win/multiple_size.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/win/hline2d.hh
--- mln/win/hline2d.hh (revision 3983)
+++ mln/win/hline2d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/win/segment1d.hh
--- mln/win/segment1d.hh (revision 3983)
+++ mln/win/segment1d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/win/line.hh
--- mln/win/line.hh (revision 3983)
+++ mln/win/line.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/win/essential.hh
--- mln/win/essential.hh (revision 3983)
+++ mln/win/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/win/rectangle2d.hh
--- mln/win/rectangle2d.hh (revision 3983)
+++ mln/win/rectangle2d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/win/diag2d.hh
--- mln/win/diag2d.hh (revision 3983)
+++ mln/win/diag2d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/win/multiple.hh
--- mln/win/multiple.hh (revision 3983)
+++ mln/win/multiple.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/win/cuboid3d.hh
--- mln/win/cuboid3d.hh (revision 3983)
+++ mln/win/cuboid3d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/win/vline2d.hh
--- mln/win/vline2d.hh (revision 3983)
+++ mln/win/vline2d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/win/cube3d.hh
--- mln/win/cube3d.hh (revision 3983)
+++ mln/win/cube3d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/win/diff.hh
--- mln/win/diff.hh (revision 3983)
+++ mln/win/diff.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/win/all.hh
--- mln/win/all.hh (revision 3983)
+++ mln/win/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/win/sym.hh
--- mln/win/sym.hh (revision 3983)
+++ mln/win/sym.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/win/ball.hh
--- mln/win/ball.hh (revision 3983)
+++ mln/win/ball.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/win/backdiag2d.hh
--- mln/win/backdiag2d.hh (revision 3983)
+++ mln/win/backdiag2d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/win/shift.hh
--- mln/win/shift.hh (revision 3983)
+++ mln/win/shift.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/win/sphere3d.hh
--- mln/win/sphere3d.hh (revision 3983)
+++ mln/win/sphere3d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/win/octagon2d.hh
--- mln/win/octagon2d.hh (revision 3983)
+++ mln/win/octagon2d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/win/disk2d.hh
--- mln/win/disk2d.hh (revision 3983)
+++ mln/win/disk2d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trace/stop.hh
--- mln/trace/stop.hh (revision 3983)
+++ mln/trace/stop.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trace/warning.hh
--- mln/trace/warning.hh (revision 3983)
+++ mln/trace/warning.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trace/essential.hh
--- mln/trace/essential.hh (revision 3983)
+++ mln/trace/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trace/exiting.hh
--- mln/trace/exiting.hh (revision 3983)
+++ mln/trace/exiting.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trace/quiet.hh
--- mln/trace/quiet.hh (revision 3983)
+++ mln/trace/quiet.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trace/all.hh
--- mln/trace/all.hh (revision 3983)
+++ mln/trace/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trace/entering.hh
--- mln/trace/entering.hh (revision 3983)
+++ mln/trace/entering.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/trace/resume.hh
--- mln/trace/resume.hh (revision 3983)
+++ mln/trace/resume.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/watershed/flooding.hh
--- mln/morpho/watershed/flooding.hh (revision 3983)
+++ mln/morpho/watershed/flooding.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/watershed/superpose.hh
--- mln/morpho/watershed/superpose.hh (revision 3983)
+++ mln/morpho/watershed/superpose.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/watershed/all.hh
--- mln/morpho/watershed/all.hh (revision 3983)
+++ mln/morpho/watershed/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/rank_filter.hh
--- mln/morpho/rank_filter.hh (revision 3983)
+++ mln/morpho/rank_filter.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/closing/sum.hh
--- mln/morpho/closing/sum.hh (revision 3983)
+++ mln/morpho/closing/sum.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/closing/leveling.hh
--- mln/morpho/closing/leveling.hh (revision 3983)
+++ mln/morpho/closing/leveling.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/closing/essential.hh
--- mln/morpho/closing/essential.hh (revision 3983)
+++ mln/morpho/closing/essential.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/closing/volume.hh
--- mln/morpho/closing/volume.hh (revision 3983)
+++ mln/morpho/closing/volume.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/closing/all.hh
--- mln/morpho/closing/all.hh (revision 3983)
+++ mln/morpho/closing/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/closing/area.hh
--- mln/morpho/closing/area.hh (revision 3983)
+++ mln/morpho/closing/area.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/closing/area_on_vertices.hh
--- mln/morpho/closing/area_on_vertices.hh (revision 3983)
+++ mln/morpho/closing/area_on_vertices.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/closing/height.hh
--- mln/morpho/closing/height.hh (revision 3983)
+++ mln/morpho/closing/height.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/closing/structural.hh
--- mln/morpho/closing/structural.hh (revision 3983)
+++ mln/morpho/closing/structural.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/closing/algebraic.hh
--- mln/morpho/closing/algebraic.hh (revision 3983)
+++ mln/morpho/closing/algebraic.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/closing/approx/all.hh
--- mln/morpho/closing/approx/all.hh (revision 3983)
+++ mln/morpho/closing/approx/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/closing/approx/structural.hh
--- mln/morpho/closing/approx/structural.hh (revision 3983)
+++ mln/morpho/closing/approx/structural.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/tree/compute_attribute_image.hh
--- mln/morpho/tree/compute_attribute_image.hh (revision 3983)
+++ mln/morpho/tree/compute_attribute_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/tree/propagate_representative.hh
--- mln/morpho/tree/propagate_representative.hh (revision 3983)
+++ mln/morpho/tree/propagate_representative.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/tree/compute_parent.hh
--- mln/morpho/tree/compute_parent.hh (revision 3983)
+++ mln/morpho/tree/compute_parent.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/tree/max.hh
--- mln/morpho/tree/max.hh (revision 3983)
+++ mln/morpho/tree/max.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/tree/filter/min.hh
--- mln/morpho/tree/filter/min.hh (revision 3983)
+++ mln/morpho/tree/filter/min.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/tree/filter/filter.hh
--- mln/morpho/tree/filter/filter.hh (revision 3983)
+++ mln/morpho/tree/filter/filter.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/tree/filter/max.hh
--- mln/morpho/tree/filter/max.hh (revision 3983)
+++ mln/morpho/tree/filter/max.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/tree/filter/all.hh
--- mln/morpho/tree/filter/all.hh (revision 3983)
+++ mln/morpho/tree/filter/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/tree/filter/direct.hh
--- mln/morpho/tree/filter/direct.hh (revision 3983)
+++ mln/morpho/tree/filter/direct.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/tree/filter/subtractive.hh
--- mln/morpho/tree/filter/subtractive.hh (revision 3983)
+++ mln/morpho/tree/filter/subtractive.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/tree/propagate_node.hh
--- mln/morpho/tree/propagate_node.hh (revision 3983)
+++ mln/morpho/tree/propagate_node.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/tree/all.hh
--- mln/morpho/tree/all.hh (revision 3983)
+++ mln/morpho/tree/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/tree/data.hh
--- mln/morpho/tree/data.hh (revision 3983)
+++ mln/morpho/tree/data.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/tree/utils.hh
--- mln/morpho/tree/utils.hh (revision 3983)
+++ mln/morpho/tree/utils.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/tree/propagate_if.hh
--- mln/morpho/tree/propagate_if.hh (revision 3983)
+++ mln/morpho/tree/propagate_if.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/line_gradient.hh
--- mln/morpho/line_gradient.hh (revision 3983)
+++ mln/morpho/line_gradient.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/thin_fit.hh
--- mln/morpho/thin_fit.hh (revision 3983)
+++ mln/morpho/thin_fit.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/attribute/sum.hh
--- mln/morpho/attribute/sum.hh (revision 3983)
+++ mln/morpho/attribute/sum.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/attribute/count_adjacent_vertices.hh
--- mln/morpho/attribute/count_adjacent_vertices.hh (revision 3983)
+++ mln/morpho/attribute/count_adjacent_vertices.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/attribute/sharpness.hh
--- mln/morpho/attribute/sharpness.hh (revision 3983)
+++ mln/morpho/attribute/sharpness.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/attribute/volume.hh
--- mln/morpho/attribute/volume.hh (revision 3983)
+++ mln/morpho/attribute/volume.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/attribute/all.hh
--- mln/morpho/attribute/all.hh (revision 3983)
+++ mln/morpho/attribute/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/attribute/height.hh
--- mln/morpho/attribute/height.hh (revision 3983)
+++ mln/morpho/attribute/height.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/attribute/card.hh
--- mln/morpho/attribute/card.hh (revision 3983)
+++ mln/morpho/attribute/card.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/elementary/like_ero_fun.hh
--- mln/morpho/elementary/like_ero_fun.hh (revision 3983)
+++ mln/morpho/elementary/like_ero_fun.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/elementary/dilation.hh
--- mln/morpho/elementary/dilation.hh (revision 3983)
+++ mln/morpho/elementary/dilation.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/elementary/laplacian.hh
--- mln/morpho/elementary/laplacian.hh (revision 3983)
+++ mln/morpho/elementary/laplacian.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/elementary/like_ero_set.hh
--- mln/morpho/elementary/like_ero_set.hh (revision 3983)
+++ mln/morpho/elementary/like_ero_set.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/elementary/essential.hh
--- mln/morpho/elementary/essential.hh (revision 3983)
+++ mln/morpho/elementary/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/elementary/all.hh
--- mln/morpho/elementary/all.hh (revision 3983)
+++ mln/morpho/elementary/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/elementary/gradient_internal.hh
--- mln/morpho/elementary/gradient_internal.hh (revision 3983)
+++ mln/morpho/elementary/gradient_internal.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/elementary/gradient.hh
--- mln/morpho/elementary/gradient.hh (revision 3983)
+++ mln/morpho/elementary/gradient.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/elementary/closing.hh
--- mln/morpho/elementary/closing.hh (revision 3983)
+++ mln/morpho/elementary/closing.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/elementary/erosion.hh
--- mln/morpho/elementary/erosion.hh (revision 3983)
+++ mln/morpho/elementary/erosion.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/elementary/top_hat.hh
--- mln/morpho/elementary/top_hat.hh (revision 3983)
+++ mln/morpho/elementary/top_hat.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/elementary/gradient_external.hh
--- mln/morpho/elementary/gradient_external.hh (revision 3983)
+++ mln/morpho/elementary/gradient_external.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/elementary/opening.hh
--- mln/morpho/elementary/opening.hh (revision 3983)
+++ mln/morpho/elementary/opening.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/all.hh
--- mln/morpho/all.hh (revision 3983)
+++ mln/morpho/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/approx/dilation.hh
--- mln/morpho/approx/dilation.hh (revision 3983)
+++ mln/morpho/approx/dilation.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/approx/all.hh
--- mln/morpho/approx/all.hh (revision 3983)
+++ mln/morpho/approx/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/approx/erosion.hh
--- mln/morpho/approx/erosion.hh (revision 3983)
+++ mln/morpho/approx/erosion.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/internal/elementary.hh
--- mln/morpho/internal/elementary.hh (revision 3983)
+++ mln/morpho/internal/elementary.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/erosion.hh
--- mln/morpho/erosion.hh (revision 3983)
+++ mln/morpho/erosion.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/thinning.hh
--- mln/morpho/thinning.hh (revision 3983)
+++ mln/morpho/thinning.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/hit_or_miss.hh
--- mln/morpho/hit_or_miss.hh (revision 3983)
+++ mln/morpho/hit_or_miss.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/reconstruction/all.hh
--- mln/morpho/reconstruction/all.hh (revision 3983)
+++ mln/morpho/reconstruction/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/reconstruction/by_erosion/all.hh
--- mln/morpho/reconstruction/by_erosion/all.hh (revision 3983)
+++ mln/morpho/reconstruction/by_erosion/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/reconstruction/by_erosion/union_find.hh
--- mln/morpho/reconstruction/by_erosion/union_find.hh (revision 3983)
+++ mln/morpho/reconstruction/by_erosion/union_find.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/reconstruction/by_dilation/all.hh
--- mln/morpho/reconstruction/by_dilation/all.hh (revision 3983)
+++ mln/morpho/reconstruction/by_dilation/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/reconstruction/by_dilation/union_find.hh
--- mln/morpho/reconstruction/by_dilation/union_find.hh (revision 3983)
+++ mln/morpho/reconstruction/by_dilation/union_find.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/thickening.hh
--- mln/morpho/thickening.hh (revision 3983)
+++ mln/morpho/thickening.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/min.hh
--- mln/morpho/min.hh (revision 3983)
+++ mln/morpho/min.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/plus.hh
--- mln/morpho/plus.hh (revision 3983)
+++ mln/morpho/plus.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/laplacian.hh
--- mln/morpho/laplacian.hh (revision 3983)
+++ mln/morpho/laplacian.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/essential.hh
--- mln/morpho/essential.hh (revision 3983)
+++ mln/morpho/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/minus.hh
--- mln/morpho/minus.hh (revision 3983)
+++ mln/morpho/minus.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/thick_miss.hh
--- mln/morpho/thick_miss.hh (revision 3983)
+++ mln/morpho/thick_miss.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/contrast.hh
--- mln/morpho/contrast.hh (revision 3983)
+++ mln/morpho/contrast.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/gradient.hh
--- mln/morpho/gradient.hh (revision 3983)
+++ mln/morpho/gradient.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/complementation.hh
--- mln/morpho/complementation.hh (revision 3983)
+++ mln/morpho/complementation.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/top_hat.hh
--- mln/morpho/top_hat.hh (revision 3983)
+++ mln/morpho/top_hat.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/opening/leveling.hh
--- mln/morpho/opening/leveling.hh (revision 3983)
+++ mln/morpho/opening/leveling.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/opening/essential.hh
--- mln/morpho/opening/essential.hh (revision 3983)
+++ mln/morpho/opening/essential.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/opening/volume.hh
--- mln/morpho/opening/volume.hh (revision 3983)
+++ mln/morpho/opening/volume.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/opening/all.hh
--- mln/morpho/opening/all.hh (revision 3983)
+++ mln/morpho/opening/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/opening/area.hh
--- mln/morpho/opening/area.hh (revision 3983)
+++ mln/morpho/opening/area.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/opening/area_on_vertices.hh
--- mln/morpho/opening/area_on_vertices.hh (revision 3983)
+++ mln/morpho/opening/area_on_vertices.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/opening/height.hh
--- mln/morpho/opening/height.hh (revision 3983)
+++ mln/morpho/opening/height.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/opening/structural.hh
--- mln/morpho/opening/structural.hh (revision 3983)
+++ mln/morpho/opening/structural.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/opening/algebraic.hh
--- mln/morpho/opening/algebraic.hh (revision 3983)
+++ mln/morpho/opening/algebraic.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/opening/approx/all.hh
--- mln/morpho/opening/approx/all.hh (revision 3983)
+++ mln/morpho/opening/approx/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/opening/approx/structural.hh
--- mln/morpho/opening/approx/structural.hh (revision 3983)
+++ mln/morpho/opening/approx/structural.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/dilation.hh
--- mln/morpho/dilation.hh (revision 3983)
+++ mln/morpho/dilation.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/general.spe.hh
--- mln/morpho/general.spe.hh (revision 3983)
+++ mln/morpho/general.spe.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/Rd.hh
--- mln/morpho/Rd.hh (revision 3983)
+++ mln/morpho/Rd.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/includes.hh
--- mln/morpho/includes.hh (revision 3983)
+++ mln/morpho/includes.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/leveling_filter.hh
--- mln/morpho/leveling_filter.hh (revision 3983)
+++ mln/morpho/leveling_filter.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/general.hh
--- mln/morpho/general.hh (revision 3983)
+++ mln/morpho/general.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/skeleton_constrained.hh
--- mln/morpho/skeleton_constrained.hh (revision 3983)
+++ mln/morpho/skeleton_constrained.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/meyer_wst.hh
--- mln/morpho/meyer_wst.hh (revision 3983)
+++ mln/morpho/meyer_wst.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/morpho/algebraic_filter.hh
--- mln/morpho/algebraic_filter.hh (revision 3983)
+++ mln/morpho/algebraic_filter.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/display/essential.hh
--- mln/display/essential.hh (revision 3983)
+++ mln/display/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/display/all.hh
--- mln/display/all.hh (revision 3983)
+++ mln/display/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/txt/all.hh
--- mln/io/txt/all.hh (revision 3983)
+++ mln/io/txt/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/txt/save.hh
--- mln/io/txt/save.hh (revision 3983)
+++ mln/io/txt/save.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/pfm/all.hh
--- mln/io/pfm/all.hh (revision 3983)
+++ mln/io/pfm/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/pfm/save.hh
--- mln/io/pfm/save.hh (revision 3983)
+++ mln/io/pfm/save.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/pfm/load.hh
--- mln/io/pfm/load.hh (revision 3983)
+++ mln/io/pfm/load.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/pgm/all.hh
--- mln/io/pgm/all.hh (revision 3983)
+++ mln/io/pgm/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/pgm/save.hh
--- mln/io/pgm/save.hh (revision 3983)
+++ mln/io/pgm/save.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 EPITA
// Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/pgm/load.hh
--- mln/io/pgm/load.hh (revision 3983)
+++ mln/io/pgm/load.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
// EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/essential.hh
--- mln/io/essential.hh (revision 3983)
+++ mln/io/essential.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/tiff/all.hh
--- mln/io/tiff/all.hh (revision 3983)
+++ mln/io/tiff/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/tiff/load.hh
--- mln/io/tiff/load.hh (revision 3983)
+++ mln/io/tiff/load.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/pnm/macros.hh
--- mln/io/pnm/macros.hh (revision 3983)
+++ mln/io/pnm/macros.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 EPITA
// Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/pnm/save_header.hh
--- mln/io/pnm/save_header.hh (revision 3983)
+++ mln/io/pnm/save_header.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 EPITA
// Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/pnm/load_header.hh
--- mln/io/pnm/load_header.hh (revision 3983)
+++ mln/io/pnm/load_header.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 EPITA
// Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/pnm/max_component.hh
--- mln/io/pnm/max_component.hh (revision 3983)
+++ mln/io/pnm/max_component.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 EPITA
// Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/pnm/all.hh
--- mln/io/pnm/all.hh (revision 3983)
+++ mln/io/pnm/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/pnm/save.hh
--- mln/io/pnm/save.hh (revision 3983)
+++ mln/io/pnm/save.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 EPITA
// Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/pnm/load.hh
--- mln/io/pnm/load.hh (revision 3983)
+++ mln/io/pnm/load.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 EPITA
// Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/dicom/all.hh
--- mln/io/dicom/all.hh (revision 3983)
+++ mln/io/dicom/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/dicom/load.hh
--- mln/io/dicom/load.hh (revision 3983)
+++ mln/io/dicom/load.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/magick/all.hh
--- mln/io/magick/all.hh (revision 3983)
+++ mln/io/magick/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/magick/save.hh
--- mln/io/magick/save.hh (revision 3983)
+++ mln/io/magick/save.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/magick/load.hh
--- mln/io/magick/load.hh (revision 3983)
+++ mln/io/magick/load.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/ppm/all.hh
--- mln/io/ppm/all.hh (revision 3983)
+++ mln/io/ppm/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/ppm/save.hh
--- mln/io/ppm/save.hh (revision 3983)
+++ mln/io/ppm/save.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 EPITA
// Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/ppm/load.hh
--- mln/io/ppm/load.hh (revision 3983)
+++ mln/io/ppm/load.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
// EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/dump/all.hh
--- mln/io/dump/all.hh (revision 3983)
+++ mln/io/dump/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/dump/save.hh
--- mln/io/dump/save.hh (revision 3983)
+++ mln/io/dump/save.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/dump/load.hh
--- mln/io/dump/load.hh (revision 3983)
+++ mln/io/dump/load.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/abort.hh
--- mln/io/abort.hh (revision 3983)
+++ mln/io/abort.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/fits/all.hh
--- mln/io/fits/all.hh (revision 3983)
+++ mln/io/fits/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/fits/load.hh
--- mln/io/fits/load.hh (revision 3983)
+++ mln/io/fits/load.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/cloud/all.hh
--- mln/io/cloud/all.hh (revision 3983)
+++ mln/io/cloud/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/cloud/save.hh
--- mln/io/cloud/save.hh (revision 3983)
+++ mln/io/cloud/save.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/cloud/load.hh
--- mln/io/cloud/load.hh (revision 3983)
+++ mln/io/cloud/load.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/all.hh
--- mln/io/all.hh (revision 3983)
+++ mln/io/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/off/all.hh
--- mln/io/off/all.hh (revision 3983)
+++ mln/io/off/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/off/save.hh
--- mln/io/off/save.hh (revision 3983)
+++ mln/io/off/save.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/off/load.hh
--- mln/io/off/load.hh (revision 3983)
+++ mln/io/off/load.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/pbm/all.hh
--- mln/io/pbm/all.hh (revision 3983)
+++ mln/io/pbm/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/pbm/save.hh
--- mln/io/pbm/save.hh (revision 3983)
+++ mln/io/pbm/save.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 EPITA
// Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/pbm/load.hh
--- mln/io/pbm/load.hh (revision 3983)
+++ mln/io/pbm/load.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
// EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/plot/all.hh
--- mln/io/plot/all.hh (revision 3983)
+++ mln/io/plot/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/plot/save.hh
--- mln/io/plot/save.hh (revision 3983)
+++ mln/io/plot/save.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/io/plot/load.hh
--- mln/io/plot/load.hh (revision 3983)
+++ mln/io/plot/load.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/logical/and.hh
--- mln/logical/and.hh (revision 3983)
+++ mln/logical/and.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/logical/and_not.hh
--- mln/logical/and_not.hh (revision 3983)
+++ mln/logical/and_not.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/logical/includes.hh
--- mln/logical/includes.hh (revision 3983)
+++ mln/logical/includes.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/logical/not.spe.hh
--- mln/logical/not.spe.hh (revision 3983)
+++ mln/logical/not.spe.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/logical/essential.hh
--- mln/logical/essential.hh (revision 3983)
+++ mln/logical/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/logical/all.hh
--- mln/logical/all.hh (revision 3983)
+++ mln/logical/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/logical/xor.hh
--- mln/logical/xor.hh (revision 3983)
+++ mln/logical/xor.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/logical/not.hh
--- mln/logical/not.hh (revision 3983)
+++ mln/logical/not.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/logical/or.hh
--- mln/logical/or.hh (revision 3983)
+++ mln/logical/or.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/registration/get_rot.hh
--- mln/registration/get_rot.hh (revision 3983)
+++ mln/registration/get_rot.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/registration/essential.hh
--- mln/registration/essential.hh (revision 3983)
+++ mln/registration/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/registration/all.hh
--- mln/registration/all.hh (revision 3983)
+++ mln/registration/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/registration/registration.hh
--- mln/registration/registration.hh (revision 3983)
+++ mln/registration/registration.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/registration/icp.hh
--- mln/registration/icp.hh (revision 3983)
+++ mln/registration/icp.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/registration/internal/rms.hh
--- mln/registration/internal/rms.hh (revision 3983)
+++ mln/registration/internal/rms.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/registration/get_rtransf.hh
--- mln/registration/get_rtransf.hh (revision 3983)
+++ mln/registration/get_rtransf.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/norm/linfty.hh
--- mln/norm/linfty.hh (revision 3983)
+++ mln/norm/linfty.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/norm/essential.hh
--- mln/norm/essential.hh (revision 3983)
+++ mln/norm/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/norm/all.hh
--- mln/norm/all.hh (revision 3983)
+++ mln/norm/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/norm/l1.hh
--- mln/norm/l1.hh (revision 3983)
+++ mln/norm/l1.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/norm/l2.hh
--- mln/norm/l2.hh (revision 3983)
+++ mln/norm/l2.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/canvas/distance_front.hh
--- mln/canvas/distance_front.hh (revision 3983)
+++ mln/canvas/distance_front.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/canvas/chamfer.hh
--- mln/canvas/chamfer.hh (revision 3983)
+++ mln/canvas/chamfer.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/canvas/morpho/essential.hh
--- mln/canvas/morpho/essential.hh (revision 3983)
+++ mln/canvas/morpho/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/canvas/morpho/all.hh
--- mln/canvas/morpho/all.hh (revision 3983)
+++ mln/canvas/morpho/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/canvas/morpho/attribute_filter.hh
--- mln/canvas/morpho/attribute_filter.hh (revision 3983)
+++ mln/canvas/morpho/attribute_filter.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/canvas/morpho/internal/find_root.hh
--- mln/canvas/morpho/internal/find_root.hh (revision 3983)
+++ mln/canvas/morpho/internal/find_root.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/canvas/essential.hh
--- mln/canvas/essential.hh (revision 3983)
+++ mln/canvas/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/canvas/all.hh
--- mln/canvas/all.hh (revision 3983)
+++ mln/canvas/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/canvas/browsing/snake_fwd.hh
--- mln/canvas/browsing/snake_fwd.hh (revision 3983)
+++ mln/canvas/browsing/snake_fwd.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/canvas/browsing/snake_vert.hh
--- mln/canvas/browsing/snake_vert.hh (revision 3983)
+++ mln/canvas/browsing/snake_vert.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/canvas/browsing/dir_struct_elt_incr_update.hh
--- mln/canvas/browsing/dir_struct_elt_incr_update.hh (revision 3983)
+++ mln/canvas/browsing/dir_struct_elt_incr_update.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/canvas/browsing/diagonal2d.hh
--- mln/canvas/browsing/diagonal2d.hh (revision 3983)
+++ mln/canvas/browsing/diagonal2d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/canvas/browsing/hyper_directional.hh
--- mln/canvas/browsing/hyper_directional.hh (revision 3983)
+++ mln/canvas/browsing/hyper_directional.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/canvas/browsing/backdiagonal2d.hh
--- mln/canvas/browsing/backdiagonal2d.hh (revision 3983)
+++ mln/canvas/browsing/backdiagonal2d.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/canvas/browsing/breadth_first_search.hh
--- mln/canvas/browsing/breadth_first_search.hh (revision 3983)
+++ mln/canvas/browsing/breadth_first_search.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/canvas/browsing/essential.hh
--- mln/canvas/browsing/essential.hh (revision 3983)
+++ mln/canvas/browsing/essential.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/canvas/browsing/all.hh
--- mln/canvas/browsing/all.hh (revision 3983)
+++ mln/canvas/browsing/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/canvas/browsing/directional.hh
--- mln/canvas/browsing/directional.hh (revision 3983)
+++ mln/canvas/browsing/directional.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/canvas/browsing/snake_generic.hh
--- mln/canvas/browsing/snake_generic.hh (revision 3983)
+++ mln/canvas/browsing/snake_generic.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/canvas/browsing/internal/graph_first_search.hh
--- mln/canvas/browsing/internal/graph_first_search.hh (revision 3983)
+++ mln/canvas/browsing/internal/graph_first_search.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/canvas/browsing/depth_first_search.hh
--- mln/canvas/browsing/depth_first_search.hh (revision 3983)
+++ mln/canvas/browsing/depth_first_search.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/canvas/browsing/fwd.hh
--- mln/canvas/browsing/fwd.hh (revision 3983)
+++ mln/canvas/browsing/fwd.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/canvas/distance_geodesic.hh
--- mln/canvas/distance_geodesic.hh (revision 3983)
+++ mln/canvas/distance_geodesic.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/canvas/labeling.hh
--- mln/canvas/labeling.hh (revision 3983)
+++ mln/canvas/labeling.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/extension/adjust_duplicate.hh
--- mln/extension/adjust_duplicate.hh (revision 3983)
+++ mln/extension/adjust_duplicate.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/extension/fill.hh
--- mln/extension/fill.hh (revision 3983)
+++ mln/extension/fill.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/extension/essential.hh
--- mln/extension/essential.hh (revision 3983)
+++ mln/extension/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/extension/all.hh
--- mln/extension/all.hh (revision 3983)
+++ mln/extension/all.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/extension/adjust.hh
--- mln/extension/adjust.hh (revision 3983)
+++ mln/extension/adjust.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/extension/duplicate.hh
--- mln/extension/duplicate.hh (revision 3983)
+++ mln/extension/duplicate.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/extension/adjust_fill.hh
--- mln/extension/adjust_fill.hh (revision 3983)
+++ mln/extension/adjust_fill.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/labeling/colorize.hh
--- mln/labeling/colorize.hh (revision 3983)
+++ mln/labeling/colorize.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/labeling/essential.hh
--- mln/labeling/essential.hh (revision 3983)
+++ mln/labeling/essential.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/labeling/regional_minima.hh
--- mln/labeling/regional_minima.hh (revision 3983)
+++ mln/labeling/regional_minima.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/labeling/regional_maxima.hh
--- mln/labeling/regional_maxima.hh (revision 3983)
+++ mln/labeling/regional_maxima.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/labeling/mean_values.hh
--- mln/labeling/mean_values.hh (revision 3983)
+++ mln/labeling/mean_values.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/labeling/blobs.hh
--- mln/labeling/blobs.hh (revision 3983)
+++ mln/labeling/blobs.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/labeling/value.spe.hh
--- mln/labeling/value.spe.hh (revision 3983)
+++ mln/labeling/value.spe.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/labeling/n_max.hh
--- mln/labeling/n_max.hh (revision 3983)
+++ mln/labeling/n_max.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/labeling/flat_zones.hh
--- mln/labeling/flat_zones.hh (revision 3983)
+++ mln/labeling/flat_zones.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/labeling/relabel.hh
--- mln/labeling/relabel.hh (revision 3983)
+++ mln/labeling/relabel.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/labeling/all.hh
--- mln/labeling/all.hh (revision 3983)
+++ mln/labeling/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/labeling/wrap.hh
--- mln/labeling/wrap.hh (revision 3983)
+++ mln/labeling/wrap.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/labeling/foreground.hh
--- mln/labeling/foreground.hh (revision 3983)
+++ mln/labeling/foreground.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/labeling/value.hh
--- mln/labeling/value.hh (revision 3983)
+++ mln/labeling/value.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/labeling/compute.hh
--- mln/labeling/compute.hh (revision 3983)
+++ mln/labeling/compute.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/labeling/pack.hh
--- mln/labeling/pack.hh (revision 3983)
+++ mln/labeling/pack.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/labeling/background.hh
--- mln/labeling/background.hh (revision 3983)
+++ mln/labeling/background.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/labeling/fill_holes.hh
--- mln/labeling/fill_holes.hh (revision 3983)
+++ mln/labeling/fill_holes.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/nil.hh
--- mln/util/nil.hh (revision 3983)
+++ mln/util/nil.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/object_id.hh
--- mln/util/object_id.hh (revision 3983)
+++ mln/util/object_id.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/couple.hh
--- mln/util/couple.hh (revision 3983)
+++ mln/util/couple.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/lazy_set.hh
--- mln/util/lazy_set.hh (revision 3983)
+++ mln/util/lazy_set.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/tree.hh
--- mln/util/tree.hh (revision 3983)
+++ mln/util/tree.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/ord_pair.hh
--- mln/util/ord_pair.hh (revision 3983)
+++ mln/util/ord_pair.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/pix.hh
--- mln/util/pix.hh (revision 3983)
+++ mln/util/pix.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/yes.hh
--- mln/util/yes.hh (revision 3983)
+++ mln/util/yes.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/graph.hh
--- mln/util/graph.hh (revision 3983)
+++ mln/util/graph.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/tracked_ptr.hh
--- mln/util/tracked_ptr.hh (revision 3983)
+++ mln/util/tracked_ptr.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2006, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/greater_point.hh
--- mln/util/greater_point.hh (revision 3983)
+++ mln/util/greater_point.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2005, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/tree_to_image.hh
--- mln/util/tree_to_image.hh (revision 3983)
+++ mln/util/tree_to_image.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/line_graph.hh
--- mln/util/line_graph.hh (revision 3983)
+++ mln/util/line_graph.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/all.hh
--- mln/util/all.hh (revision 3983)
+++ mln/util/all.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/soft_heap.hh
--- mln/util/soft_heap.hh (revision 3983)
+++ mln/util/soft_heap.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/eat.hh
--- mln/util/eat.hh (revision 3983)
+++ mln/util/eat.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/branch_iter_ind.hh
--- mln/util/branch_iter_ind.hh (revision 3983)
+++ mln/util/branch_iter_ind.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/fibonacci_heap.hh
--- mln/util/fibonacci_heap.hh (revision 3983)
+++ mln/util/fibonacci_heap.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/dindex.hh
--- mln/util/dindex.hh (revision 3983)
+++ mln/util/dindex.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/tree_fast.hh
--- mln/util/tree_fast.hh (revision 3983)
+++ mln/util/tree_fast.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/internal/graph_iter.hh
--- mln/util/internal/graph_iter.hh (revision 3983)
+++ mln/util/internal/graph_iter.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/internal/edge_impl.hh
--- mln/util/internal/edge_impl.hh (revision 3983)
+++ mln/util/internal/edge_impl.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/internal/graph_nbh_iter_base.hh
--- mln/util/internal/graph_nbh_iter_base.hh (revision 3983)
+++ mln/util/internal/graph_nbh_iter_base.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/internal/id2element.hh
--- mln/util/internal/id2element.hh (revision 3983)
+++ mln/util/internal/id2element.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/internal/graph_base.hh
--- mln/util/internal/graph_base.hh (revision 3983)
+++ mln/util/internal/graph_base.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/internal/graph_nbh_iter.hh
--- mln/util/internal/graph_nbh_iter.hh (revision 3983)
+++ mln/util/internal/graph_nbh_iter.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/internal/graph_iter_base.hh
--- mln/util/internal/graph_iter_base.hh (revision 3983)
+++ mln/util/internal/graph_iter_base.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/internal/vertex_impl.hh
--- mln/util/internal/vertex_impl.hh (revision 3983)
+++ mln/util/internal/vertex_impl.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/tree_to_fast.hh
--- mln/util/tree_to_fast.hh (revision 3983)
+++ mln/util/tree_to_fast.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/array.hh
--- mln/util/array.hh (revision 3983)
+++ mln/util/array.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/site_pair.hh
--- mln/util/site_pair.hh (revision 3983)
+++ mln/util/site_pair.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/branch_iter.hh
--- mln/util/branch_iter.hh (revision 3983)
+++ mln/util/branch_iter.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/ignore.hh
--- mln/util/ignore.hh (revision 3983)
+++ mln/util/ignore.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/ord.hh
--- mln/util/ord.hh (revision 3983)
+++ mln/util/ord.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/max.hh
--- mln/util/max.hh (revision 3983)
+++ mln/util/max.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/essential.hh
--- mln/util/essential.hh (revision 3983)
+++ mln/util/essential.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/set.hh
--- mln/util/set.hh (revision 3983)
+++ mln/util/set.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/greater_psite.hh
--- mln/util/greater_psite.hh (revision 3983)
+++ mln/util/greater_psite.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2005, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/graph_ids.hh
--- mln/util/graph_ids.hh (revision 3983)
+++ mln/util/graph_ids.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/edge.hh
--- mln/util/edge.hh (revision 3983)
+++ mln/util/edge.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/adjacency_matrix.hh
--- mln/util/adjacency_matrix.hh (revision 3983)
+++ mln/util/adjacency_matrix.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/index.hh
--- mln/util/index.hh (revision 3983)
+++ mln/util/index.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/lemmings.hh
--- mln/util/lemmings.hh (revision 3983)
+++ mln/util/lemmings.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/vertex.hh
--- mln/util/vertex.hh (revision 3983)
+++ mln/util/vertex.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/multi_site.hh
--- mln/util/multi_site.hh (revision 3983)
+++ mln/util/multi_site.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/tree_fast_to_image.hh
--- mln/util/tree_fast_to_image.hh (revision 3983)
+++ mln/util/tree_fast_to_image.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: mln/util/timer.hh
--- mln/util/timer.hh (revision 3983)
+++ mln/util/timer.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tools/area_flooding.cc
--- tools/area_flooding.cc (revision 3983)
+++ tools/area_flooding.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tools/seed2tiling.cc
--- tools/seed2tiling.cc (revision 3983)
+++ tools/seed2tiling.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/topo/skeleton/is_simple_point.cc
--- tests/topo/skeleton/is_simple_point.cc (revision 3983)
+++ tests/topo/skeleton/is_simple_point.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/topo/skeleton/crest.cc
--- tests/topo/skeleton/crest.cc (revision 3983)
+++ tests/topo/skeleton/crest.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/topo/complex.cc
--- tests/topo/complex.cc (revision 3983)
+++ tests/topo/complex.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/trait/image/images.cc
--- tests/trait/image/images.cc (revision 3983)
+++ tests/trait/image/images.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/trait/super.cc
--- tests/trait/super.cc (revision 3983)
+++ tests/trait/super.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/trait/ch_value.cc
--- tests/trait/ch_value.cc (revision 3983)
+++ tests/trait/ch_value.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/trait/value/comp.cc
--- tests/trait/value/comp.cc (revision 3983)
+++ tests/trait/value/comp.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/trait/value/values.cc
--- tests/trait/value/values.cc (revision 3983)
+++ tests/trait/value/values.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/trait/op/uminus.cc
--- tests/trait/op/uminus.cc (revision 3983)
+++ tests/trait/op/uminus.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/trait/op/plus.cc
--- tests/trait/op/plus.cc (revision 3983)
+++ tests/trait/op/plus.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/histo/compute.cc
--- tests/histo/compute.cc (revision 3983)
+++ tests/histo/compute.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/histo/point_from_value.cc
--- tests/histo/point_from_value.cc (revision 3983)
+++ tests/histo/point_from_value.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/histo/to_image1d.cc
--- tests/histo/to_image1d.cc (revision 3983)
+++ tests/histo/to_image1d.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/debug/iota.cc
--- tests/debug/iota.cc (revision 3983)
+++ tests/debug/iota.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/debug/println_with_border.cc
--- tests/debug/println_with_border.cc (revision 3983)
+++ tests/debug/println_with_border.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/debug/println.cc
--- tests/debug/println.cc (revision 3983)
+++ tests/debug/println.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/debug/slices_2d.cc
--- tests/debug/slices_2d.cc (revision 3983)
+++ tests/debug/slices_2d.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/all_headers.cc
--- tests/all_headers.cc (revision 3983)
+++ tests/all_headers.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/world/inter_pixel/is_separator.cc
--- tests/world/inter_pixel/is_separator.cc (revision 3983)
+++ tests/world/inter_pixel/is_separator.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/world/inter_pixel/compute.cc
--- tests/world/inter_pixel/compute.cc (revision 3983)
+++ tests/world/inter_pixel/compute.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/world/inter_pixel/is_pixel.cc
--- tests/world/inter_pixel/is_pixel.cc (revision 3983)
+++ tests/world/inter_pixel/is_pixel.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/world/inter_pixel/immerse.cc
--- tests/world/inter_pixel/immerse.cc (revision 3983)
+++ tests/world/inter_pixel/immerse.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/world/inter_pixel/separator_to_pixels.cc
--- tests/world/inter_pixel/separator_to_pixels.cc (revision 3983)
+++ tests/world/inter_pixel/separator_to_pixels.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/world/inter_pixel/dim2/make_edge_image.cc
--- tests/world/inter_pixel/dim2/make_edge_image.cc (revision 3983)
+++ tests/world/inter_pixel/dim2/make_edge_image.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/world/inter_pixel/display_edge.cc
--- tests/world/inter_pixel/display_edge.cc (revision 3983)
+++ tests/world/inter_pixel/display_edge.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/site_set/p_array.cc
--- tests/core/site_set/p_array.cc (revision 3983)
+++ tests/core/site_set/p_array.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/site_set/p_if.cc
--- tests/core/site_set/p_if.cc (revision 3983)
+++ tests/core/site_set/p_if.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/site_set/operators.cc
--- tests/core/site_set/operators.cc (revision 3983)
+++ tests/core/site_set/operators.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/site_set/p_queue_fast.cc
--- tests/core/site_set/p_queue_fast.cc (revision 3983)
+++ tests/core/site_set/p_queue_fast.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/site_set/p_image.cc
--- tests/core/site_set/p_image.cc (revision 3983)
+++ tests/core/site_set/p_image.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/site_set/p_transformed.cc
--- tests/core/site_set/p_transformed.cc (revision 3983)
+++ tests/core/site_set/p_transformed.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/site_set/p_vertices.cc
--- tests/core/site_set/p_vertices.cc (revision 3983)
+++ tests/core/site_set/p_vertices.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/site_set/p_queue.cc
--- tests/core/site_set/p_queue.cc (revision 3983)
+++ tests/core/site_set/p_queue.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/site_set/p_priority_queue.cc
--- tests/core/site_set/p_priority_queue.cc (revision 3983)
+++ tests/core/site_set/p_priority_queue.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/site_set/p_vaccess.cc
--- tests/core/site_set/p_vaccess.cc (revision 3983)
+++ tests/core/site_set/p_vaccess.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/site_set/p_edges.cc
--- tests/core/site_set/p_edges.cc (revision 3983)
+++ tests/core/site_set/p_edges.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/site_set/p_complex.cc
--- tests/core/site_set/p_complex.cc (revision 3983)
+++ tests/core/site_set/p_complex.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/site_set/p_set.cc
--- tests/core/site_set/p_set.cc (revision 3983)
+++ tests/core/site_set/p_set.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/other/graph_elt_neighborhood.cc
--- tests/core/other/graph_elt_neighborhood.cc (revision 3983)
+++ tests/core/other/graph_elt_neighborhood.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/other/graph_elt_window.cc
--- tests/core/other/graph_elt_window.cc (revision 3983)
+++ tests/core/other/graph_elt_window.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/other/neighb.cc
--- tests/core/other/neighb.cc (revision 3983)
+++ tests/core/other/neighb.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/other/w_window.cc
--- tests/core/other/w_window.cc (revision 3983)
+++ tests/core/other/w_window.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/other/point_set_compatibility.cc
--- tests/core/other/point_set_compatibility.cc (revision 3983)
+++ tests/core/other/point_set_compatibility.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/other/box_runstart_piter.cc
--- tests/core/other/box_runstart_piter.cc (revision 3983)
+++ tests/core/other/box_runstart_piter.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/other/pixter1d.cc
--- tests/core/other/pixter1d.cc (revision 3983)
+++ tests/core/other/pixter1d.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/other/pixter2d.cc
--- tests/core/other/pixter2d.cc (revision 3983)
+++ tests/core/other/pixter2d.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/other/pixter3d.cc
--- tests/core/other/pixter3d.cc (revision 3983)
+++ tests/core/other/pixter3d.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/other/graph_elt_window_if.cc
--- tests/core/other/graph_elt_window_if.cc (revision 3983)
+++ tests/core/other/graph_elt_window_if.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/other/graph_elt_neighborhood_if.cc
--- tests/core/other/graph_elt_neighborhood_if.cc (revision 3983)
+++ tests/core/other/graph_elt_neighborhood_if.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/other/dpoints_pixter.cc
--- tests/core/other/dpoints_pixter.cc (revision 3983)
+++ tests/core/other/dpoints_pixter.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/other/category.cc
--- tests/core/other/category.cc (revision 3983)
+++ tests/core/other/category.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/other/pixel.cc
--- tests/core/other/pixel.cc (revision 3983)
+++ tests/core/other/pixel.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/other/pixter1d_more.cc
--- tests/core/other/pixter1d_more.cc (revision 3983)
+++ tests/core/other/pixter1d_more.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/other/pixter2d_more.cc
--- tests/core/other/pixter2d_more.cc (revision 3983)
+++ tests/core/other/pixter2d_more.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/other/pixter3d_more.cc
--- tests/core/other/pixter3d_more.cc (revision 3983)
+++ tests/core/other/pixter3d_more.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/other/var.cc
--- tests/core/other/var.cc (revision 3983)
+++ tests/core/other/var.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/image/graph_image.cc
--- tests/core/image/graph_image.cc (revision 3983)
+++ tests/core/image/graph_image.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright(C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/image/plain.cc
--- tests/core/image/plain.cc (revision 3983)
+++ tests/core/image/plain.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/image/dmorph/sub_image.cc
--- tests/core/image/dmorph/sub_image.cc (revision 3983)
+++ tests/core/image/dmorph/sub_image.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/image/dmorph/unproject_image.cc
--- tests/core/image/dmorph/unproject_image.cc (revision 3983)
+++ tests/core/image/dmorph/unproject_image.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/image/dmorph/image2d_h.cc
--- tests/core/image/dmorph/image2d_h.cc (revision 3983)
+++ tests/core/image/dmorph/image2d_h.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/image/dmorph/image_if.cc
--- tests/core/image/dmorph/image_if.cc (revision 3983)
+++ tests/core/image/dmorph/image_if.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/image/dmorph/slice_image.cc
--- tests/core/image/dmorph/slice_image.cc (revision 3983)
+++ tests/core/image/dmorph/slice_image.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/image/dmorph/p2p_image.cc
--- tests/core/image/dmorph/p2p_image.cc (revision 3983)
+++ tests/core/image/dmorph/p2p_image.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/image/dmorph/hexa.cc
--- tests/core/image/dmorph/hexa.cc (revision 3983)
+++ tests/core/image/dmorph/hexa.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/image/dmorph/transformed_image.cc
--- tests/core/image/dmorph/transformed_image.cc (revision 3983)
+++ tests/core/image/dmorph/transformed_image.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/image/edge_image.cc
--- tests/core/image/edge_image.cc (revision 3983)
+++ tests/core/image/edge_image.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright(C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/image/image1d.cc
--- tests/core/image/image1d.cc (revision 3983)
+++ tests/core/image/image1d.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/image/image2d.cc
--- tests/core/image/image2d.cc (revision 3983)
+++ tests/core/image/image2d.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/image/complex_image.cc
--- tests/core/image/complex_image.cc (revision 3983)
+++ tests/core/image/complex_image.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/image/image3d.cc
--- tests/core/image/image3d.cc (revision 3983)
+++ tests/core/image/image3d.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/image/line_graph_image.cc
--- tests/core/image/line_graph_image.cc (revision 3983)
+++ tests/core/image/line_graph_image.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright(C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/image/imorph/decorated_image.cc
--- tests/core/image/imorph/decorated_image.cc (revision 3983)
+++ tests/core/image/imorph/decorated_image.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/image/imorph/safe_image.cc
--- tests/core/image/imorph/safe_image.cc (revision 3983)
+++ tests/core/image/imorph/safe_image.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/image/imorph/tr_image.cc
--- tests/core/image/imorph/tr_image.cc (revision 3983)
+++ tests/core/image/imorph/tr_image.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/image/imorph/interpolated.cc
--- tests/core/image/imorph/interpolated.cc (revision 3983)
+++ tests/core/image/imorph/interpolated.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/image/imorph/labeled_image.cc
--- tests/core/image/imorph/labeled_image.cc (revision 3983)
+++ tests/core/image/imorph/labeled_image.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/image/vertex_image.cc
--- tests/core/image/vertex_image.cc (revision 3983)
+++ tests/core/image/vertex_image.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright(C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/image/complex_image.hh
--- tests/core/image/complex_image.hh (revision 3983)
+++ tests/core/image/complex_image.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/image/vmorph/cast_image.cc
--- tests/core/image/vmorph/cast_image.cc (revision 3983)
+++ tests/core/image/vmorph/cast_image.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/image/flat_image.cc
--- tests/core/image/flat_image.cc (revision 3983)
+++ tests/core/image/flat_image.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/routine/initialize.cc
--- tests/core/routine/initialize.cc (revision 3983)
+++ tests/core/routine/initialize.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/routine/primary.cc
--- tests/core/routine/primary.cc (revision 3983)
+++ tests/core/routine/primary.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/routine/exact.cc
--- tests/core/routine/exact.cc (revision 3983)
+++ tests/core/routine/exact.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/routine/extend.cc
--- tests/core/routine/extend.cc (revision 3983)
+++ tests/core/routine/extend.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/routine/duplicate.cc
--- tests/core/routine/duplicate.cc (revision 3983)
+++ tests/core/routine/duplicate.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/alias/window1d.cc
--- tests/core/alias/window1d.cc (revision 3983)
+++ tests/core/alias/window1d.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/alias/w_window1d_int.cc
--- tests/core/alias/w_window1d_int.cc (revision 3983)
+++ tests/core/alias/w_window1d_int.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/alias/window2d.cc
--- tests/core/alias/window2d.cc (revision 3983)
+++ tests/core/alias/window2d.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/alias/w_window2d_int.cc
--- tests/core/alias/w_window2d_int.cc (revision 3983)
+++ tests/core/alias/w_window2d_int.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/alias/window3d.cc
--- tests/core/alias/window3d.cc (revision 3983)
+++ tests/core/alias/window3d.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/alias/w_window3d_int.cc
--- tests/core/alias/w_window3d_int.cc (revision 3983)
+++ tests/core/alias/w_window3d_int.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/alias/box1d.cc
--- tests/core/alias/box1d.cc (revision 3983)
+++ tests/core/alias/box1d.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/alias/point1d.cc
--- tests/core/alias/point1d.cc (revision 3983)
+++ tests/core/alias/point1d.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/alias/box2d.cc
--- tests/core/alias/box2d.cc (revision 3983)
+++ tests/core/alias/box2d.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/alias/point2d.cc
--- tests/core/alias/point2d.cc (revision 3983)
+++ tests/core/alias/point2d.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/alias/box3d.cc
--- tests/core/alias/box3d.cc (revision 3983)
+++ tests/core/alias/box3d.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/alias/point3d.cc
--- tests/core/alias/point3d.cc (revision 3983)
+++ tests/core/alias/point3d.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/alias/dpoint1d.cc
--- tests/core/alias/dpoint1d.cc (revision 3983)
+++ tests/core/alias/dpoint1d.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/alias/dpoint2d.cc
--- tests/core/alias/dpoint2d.cc (revision 3983)
+++ tests/core/alias/dpoint2d.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/core/alias/dpoint3d.cc
--- tests/core/alias/dpoint3d.cc (revision 3983)
+++ tests/core/alias/dpoint3d.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/literal/black.cc
--- tests/literal/black.cc (revision 3983)
+++ tests/literal/black.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/literal/zero.cc
--- tests/literal/zero.cc (revision 3983)
+++ tests/literal/zero.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/literal/white.cc
--- tests/literal/white.cc (revision 3983)
+++ tests/literal/white.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/literal/one.cc
--- tests/literal/one.cc (revision 3983)
+++ tests/literal/one.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/literal/medium_gray.cc
--- tests/literal/medium_gray.cc (revision 3983)
+++ tests/literal/medium_gray.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/draw/graph.cc
--- tests/draw/graph.cc (revision 3983)
+++ tests/draw/graph.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/draw/all_headers.cc
--- tests/draw/all_headers.cc (revision 3983)
+++ tests/draw/all_headers.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/draw/line.cc
--- tests/draw/line.cc (revision 3983)
+++ tests/draw/line.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/global_vars2.cc
--- tests/global_vars2.cc (revision 3983)
+++ tests/global_vars2.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/graph/labeling.cc
--- tests/graph/labeling.cc (revision 3983)
+++ tests/graph/labeling.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/graph/attribute/representative.cc
--- tests/graph/attribute/representative.cc (revision 3983)
+++ tests/graph/attribute/representative.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/graph/attribute/card.cc
--- tests/graph/attribute/card.cc (revision 3983)
+++ tests/graph/attribute/card.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/opt/value.cc
--- tests/opt/value.cc (revision 3983)
+++ tests/opt/value.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/opt/at.cc
--- tests/opt/at.cc (revision 3983)
+++ tests/opt/at.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/opt/element.cc
--- tests/opt/element.cc (revision 3983)
+++ tests/opt/element.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/metal/is.cc
--- tests/metal/is.cc (revision 3983)
+++ tests/metal/is.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/metal/math/root.cc
--- tests/metal/math/root.cc (revision 3983)
+++ tests/metal/math/root.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/metal/math/pow.cc
--- tests/metal/math/pow.cc (revision 3983)
+++ tests/metal/math/pow.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/metal/converts_to.cc
--- tests/metal/converts_to.cc (revision 3983)
+++ tests/metal/converts_to.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/metal/unconst.cc
--- tests/metal/unconst.cc (revision 3983)
+++ tests/metal/unconst.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/essential_headers.cc
--- tests/essential_headers.cc (revision 3983)
+++ tests/essential_headers.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/transformation/rotate.cc
--- tests/transformation/rotate.cc (revision 3983)
+++ tests/transformation/rotate.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/arith/minus.cc
--- tests/arith/minus.cc (revision 3983)
+++ tests/arith/minus.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/arith/diff_abs.cc
--- tests/arith/diff_abs.cc (revision 3983)
+++ tests/arith/diff_abs.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/arith/minus_full.cc
--- tests/arith/minus_full.cc (revision 3983)
+++ tests/arith/minus_full.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/arith/times.cc
--- tests/arith/times.cc (revision 3983)
+++ tests/arith/times.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/arith/all_headers.cc
--- tests/arith/all_headers.cc (revision 3983)
+++ tests/arith/all_headers.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/arith/plus.cc
--- tests/arith/plus.cc (revision 3983)
+++ tests/arith/plus.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/arith/times_full.cc
--- tests/arith/times_full.cc (revision 3983)
+++ tests/arith/times_full.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/arith/plus_full.cc
--- tests/arith/plus_full.cc (revision 3983)
+++ tests/arith/plus_full.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/arith/revert.cc
--- tests/arith/revert.cc (revision 3983)
+++ tests/arith/revert.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/arith/revert_full.cc
--- tests/arith/revert_full.cc (revision 3983)
+++ tests/arith/revert_full.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/transform_full.cc
--- tests/data/transform_full.cc (revision 3983)
+++ tests/data/transform_full.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/median.cc
--- tests/data/median.cc (revision 3983)
+++ tests/data/median.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/compute_full.cc
--- tests/data/compute_full.cc (revision 3983)
+++ tests/data/compute_full.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/all_headers.cc
--- tests/data/all_headers.cc (revision 3983)
+++ tests/data/all_headers.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/abs.cc
--- tests/data/abs.cc (revision 3983)
+++ tests/data/abs.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/transform_inplace.cc
--- tests/data/transform_inplace.cc (revision 3983)
+++ tests/data/transform_inplace.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/apply_full.cc
--- tests/data/apply_full.cc (revision 3983)
+++ tests/data/apply_full.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/fill_full.cc
--- tests/data/fill_full.cc (revision 3983)
+++ tests/data/fill_full.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/median_fast.cc
--- tests/data/median_fast.cc (revision 3983)
+++ tests/data/median_fast.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/compute.cc
--- tests/data/compute.cc (revision 3983)
+++ tests/data/compute.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/sort_psites.cc
--- tests/data/sort_psites.cc (revision 3983)
+++ tests/data/sort_psites.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/convert.cc
--- tests/data/convert.cc (revision 3983)
+++ tests/data/convert.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/update.cc
--- tests/data/update.cc (revision 3983)
+++ tests/data/update.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/fill_with_image.cc
--- tests/data/fill_with_image.cc (revision 3983)
+++ tests/data/fill_with_image.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/approx/median.cc
--- tests/data/approx/median.cc (revision 3983)
+++ tests/data/approx/median.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/fill.cc
--- tests/data/fill.cc (revision 3983)
+++ tests/data/fill.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/abs_full.cc
--- tests/data/abs_full.cc (revision 3983)
+++ tests/data/abs_full.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/memcpy_.cc
--- tests/data/memcpy_.cc (revision 3983)
+++ tests/data/memcpy_.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/stretch_full.cc
--- tests/data/stretch_full.cc (revision 3983)
+++ tests/data/stretch_full.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/paste_full.cc
--- tests/data/paste_full.cc (revision 3983)
+++ tests/data/paste_full.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/compare_full.cc
--- tests/data/compare_full.cc (revision 3983)
+++ tests/data/compare_full.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/saturate_full.cc
--- tests/data/saturate_full.cc (revision 3983)
+++ tests/data/saturate_full.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/replace.cc
--- tests/data/replace.cc (revision 3983)
+++ tests/data/replace.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/transform.cc
--- tests/data/transform.cc (revision 3983)
+++ tests/data/transform.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/stretch.cc
--- tests/data/stretch.cc (revision 3983)
+++ tests/data/stretch.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/paste.cc
--- tests/data/paste.cc (revision 3983)
+++ tests/data/paste.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/fill_with_value.cc
--- tests/data/fill_with_value.cc (revision 3983)
+++ tests/data/fill_with_value.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/naive/median.cc
--- tests/data/naive/median.cc (revision 3983)
+++ tests/data/naive/median.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/apply.cc
--- tests/data/apply.cc (revision 3983)
+++ tests/data/apply.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/compare.cc
--- tests/data/compare.cc (revision 3983)
+++ tests/data/compare.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/saturate.cc
--- tests/data/saturate.cc (revision 3983)
+++ tests/data/saturate.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/data/memset_.cc
--- tests/data/memset_.cc (revision 3983)
+++ tests/data/memset_.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/extract/green.cc
--- tests/extract/green.cc (revision 3983)
+++ tests/extract/green.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/extract/blue.cc
--- tests/extract/blue.cc (revision 3983)
+++ tests/extract/blue.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/extract/red.cc
--- tests/extract/red.cc (revision 3983)
+++ tests/extract/red.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/linear/convolve.cc
--- tests/linear/convolve.cc (revision 3983)
+++ tests/linear/convolve.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/linear/lap.cc
--- tests/linear/lap.cc (revision 3983)
+++ tests/linear/lap.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/linear/log.cc
--- tests/linear/log.cc (revision 3983)
+++ tests/linear/log.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/linear/local/convolve.cc
--- tests/linear/local/convolve.cc (revision 3983)
+++ tests/linear/local/convolve.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/linear/gaussian/filter.cc
--- tests/linear/gaussian/filter.cc (revision 3983)
+++ tests/linear/gaussian/filter.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/linear/convolve_directional.cc
--- tests/linear/convolve_directional.cc (revision 3983)
+++ tests/linear/convolve_directional.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/linear/convolve_2x1d.cc
--- tests/linear/convolve_2x1d.cc (revision 3983)
+++ tests/linear/convolve_2x1d.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/linear/sobel_2d.cc
--- tests/linear/sobel_2d.cc (revision 3983)
+++ tests/linear/sobel_2d.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/linear/gaussian.cc
--- tests/linear/gaussian.cc (revision 3983)
+++ tests/linear/gaussian.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/transform/influence_zone_front.cc
--- tests/transform/influence_zone_front.cc (revision 3983)
+++ tests/transform/influence_zone_front.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/transform/distance_geodesic.cc
--- tests/transform/distance_geodesic.cc (revision 3983)
+++ tests/transform/distance_geodesic.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/transform/distance_front.cc
--- tests/transform/distance_front.cc (revision 3983)
+++ tests/transform/distance_front.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/transform/distance_and_closest_point_geodesic.cc
--- tests/transform/distance_and_closest_point_geodesic.cc (revision 3983)
+++ tests/transform/distance_and_closest_point_geodesic.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/transform/influence_zone_geodesic.cc
--- tests/transform/influence_zone_geodesic.cc (revision 3983)
+++ tests/transform/influence_zone_geodesic.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/transform/bench_closest_point_geodesic.cc
--- tests/transform/bench_closest_point_geodesic.cc (revision 3983)
+++ tests/transform/bench_closest_point_geodesic.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/transform/hough.cc
--- tests/transform/hough.cc (revision 3983)
+++ tests/transform/hough.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/site_set/rectangularity.cc
--- tests/accu/site_set/rectangularity.cc (revision 3983)
+++ tests/accu/site_set/rectangularity.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/pair.cc
--- tests/accu/pair.cc (revision 3983)
+++ tests/accu/pair.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/rank.cc
--- tests/accu/rank.cc (revision 3983)
+++ tests/accu/rank.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/max_h.cc
--- tests/accu/max_h.cc (revision 3983)
+++ tests/accu/max_h.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/transform_snake.cc
--- tests/accu/transform_snake.cc (revision 3983)
+++ tests/accu/transform_snake.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/image/to_result.cc
--- tests/accu/image/to_result.cc (revision 3983)
+++ tests/accu/image/to_result.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/image/take_n_times.cc
--- tests/accu/image/take_n_times.cc (revision 3983)
+++ tests/accu/image/take_n_times.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/image/init.cc
--- tests/accu/image/init.cc (revision 3983)
+++ tests/accu/image/init.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/image/take.cc
--- tests/accu/image/take.cc (revision 3983)
+++ tests/accu/image/take.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/image/set_value.cc
--- tests/accu/image/set_value.cc (revision 3983)
+++ tests/accu/image/set_value.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/image/untake.cc
--- tests/accu/image/untake.cc (revision 3983)
+++ tests/accu/image/untake.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/image/take_as_init.cc
--- tests/accu/image/take_as_init.cc (revision 3983)
+++ tests/accu/image/take_as_init.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/median_h.cc
--- tests/accu/median_h.cc (revision 3983)
+++ tests/accu/median_h.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/transform_diagonal.cc
--- tests/accu/transform_diagonal.cc (revision 3983)
+++ tests/accu/transform_diagonal.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/max_site.cc
--- tests/accu/max_site.cc (revision 3983)
+++ tests/accu/max_site.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/transform.cc
--- tests/accu/transform.cc (revision 3983)
+++ tests/accu/transform.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/compute.cc
--- tests/accu/compute.cc (revision 3983)
+++ tests/accu/compute.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/mean.cc
--- tests/accu/mean.cc (revision 3983)
+++ tests/accu/mean.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/nil.cc
--- tests/accu/nil.cc (revision 3983)
+++ tests/accu/nil.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/transform_line.cc
--- tests/accu/transform_line.cc (revision 3983)
+++ tests/accu/transform_line.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/min.cc
--- tests/accu/min.cc (revision 3983)
+++ tests/accu/min.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/max.cc
--- tests/accu/max.cc (revision 3983)
+++ tests/accu/max.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/histo.cc
--- tests/accu/histo.cc (revision 3983)
+++ tests/accu/histo.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/all_accus.cc
--- tests/accu/all_accus.cc (revision 3983)
+++ tests/accu/all_accus.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/line.cc
--- tests/accu/line.cc (revision 3983)
+++ tests/accu/line.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/stat/var.cc
--- tests/accu/stat/var.cc (revision 3983)
+++ tests/accu/stat/var.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/min_max.cc
--- tests/accu/min_max.cc (revision 3983)
+++ tests/accu/min_max.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/count.cc
--- tests/accu/count.cc (revision 3983)
+++ tests/accu/count.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/transform_directional.cc
--- tests/accu/transform_directional.cc (revision 3983)
+++ tests/accu/transform_directional.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/tuple.cc
--- tests/accu/tuple.cc (revision 3983)
+++ tests/accu/tuple.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/min_h.cc
--- tests/accu/min_h.cc (revision 3983)
+++ tests/accu/min_h.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/accu/bbox.cc
--- tests/accu/bbox.cc (revision 3983)
+++ tests/accu/bbox.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/value/set.cc
--- tests/value/set.cc (revision 3983)
+++ tests/value/set.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/value/bool.cc
--- tests/value/bool.cc (revision 3983)
+++ tests/value/bool.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/value/rgb_full.cc
--- tests/value/rgb_full.cc (revision 3983)
+++ tests/value/rgb_full.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/value/macros.hh
--- tests/value/macros.hh (revision 3983)
+++ tests/value/macros.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/value/graylevel_f.cc
--- tests/value/graylevel_f.cc (revision 3983)
+++ tests/value/graylevel_f.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/value/sign.cc
--- tests/value/sign.cc (revision 3983)
+++ tests/value/sign.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/value/rgb8.cc
--- tests/value/rgb8.cc (revision 3983)
+++ tests/value/rgb8.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/value/float01_bis.cc
--- tests/value/float01_bis.cc (revision 3983)
+++ tests/value/float01_bis.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/value/stack.cc
--- tests/value/stack.cc (revision 3983)
+++ tests/value/stack.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/value/scalar.cc
--- tests/value/scalar.cc (revision 3983)
+++ tests/value/scalar.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/value/float01.cc
--- tests/value/float01.cc (revision 3983)
+++ tests/value/float01.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/value/int_u8.cc
--- tests/value/int_u8.cc (revision 3983)
+++ tests/value/int_u8.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/value/float01_f.cc
--- tests/value/float01_f.cc (revision 3983)
+++ tests/value/float01_f.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/value/int_s.cc
--- tests/value/int_s.cc (revision 3983)
+++ tests/value/int_s.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/value/graylevel_full.cc
--- tests/value/graylevel_full.cc (revision 3983)
+++ tests/value/graylevel_full.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/value/label.cc
--- tests/value/label.cc (revision 3983)
+++ tests/value/label.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/value/interop.cc
--- tests/value/interop.cc (revision 3983)
+++ tests/value/interop.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/value/graylevel_f_full.cc
--- tests/value/graylevel_f_full.cc (revision 3983)
+++ tests/value/graylevel_f_full.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2006, 2007, 2009 EPITA Research and Development
// Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/value/builtin/builtin.cc
--- tests/value/builtin/builtin.cc (revision 3983)
+++ tests/value/builtin/builtin.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/value/int_s16.cc
--- tests/value/int_s16.cc (revision 3983)
+++ tests/value/int_s16.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/value/equiv.cc
--- tests/value/equiv.cc (revision 3983)
+++ tests/value/equiv.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/value/graylevel.cc
--- tests/value/graylevel.cc (revision 3983)
+++ tests/value/graylevel.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/mirror_full.cc
--- tests/border/mirror_full.cc (revision 3983)
+++ tests/border/mirror_full.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/duplicate_full.cc
--- tests/border/duplicate_full.cc (revision 3983)
+++ tests/border/duplicate_full.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/get_full.cc
--- tests/border/get_full.cc (revision 3983)
+++ tests/border/get_full.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/equalize_full.cc
--- tests/border/equalize_full.cc (revision 3983)
+++ tests/border/equalize_full.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/resize.cc
--- tests/border/resize.cc (revision 3983)
+++ tests/border/resize.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/find_full.cc
--- tests/border/find_full.cc (revision 3983)
+++ tests/border/find_full.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/all_headers.cc
--- tests/border/all_headers.cc (revision 3983)
+++ tests/border/all_headers.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/fill_full.cc
--- tests/border/fill_full.cc (revision 3983)
+++ tests/border/fill_full.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/resize_image1d_1.cc
--- tests/border/resize_image1d_1.cc (revision 3983)
+++ tests/border/resize_image1d_1.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/resize_image1d_2.cc
--- tests/border/resize_image1d_2.cc (revision 3983)
+++ tests/border/resize_image1d_2.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/resize_image2d_1.cc
--- tests/border/resize_image2d_1.cc (revision 3983)
+++ tests/border/resize_image2d_1.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/mirror.cc
--- tests/border/mirror.cc (revision 3983)
+++ tests/border/mirror.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/duplicate.cc
--- tests/border/duplicate.cc (revision 3983)
+++ tests/border/duplicate.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/resize_image1d_3.cc
--- tests/border/resize_image1d_3.cc (revision 3983)
+++ tests/border/resize_image1d_3.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/resize_image2d_2.cc
--- tests/border/resize_image2d_2.cc (revision 3983)
+++ tests/border/resize_image2d_2.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/resize_image3d_1.cc
--- tests/border/resize_image3d_1.cc (revision 3983)
+++ tests/border/resize_image3d_1.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/resize_image2d_3.cc
--- tests/border/resize_image2d_3.cc (revision 3983)
+++ tests/border/resize_image2d_3.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/resize_image3d_2.cc
--- tests/border/resize_image3d_2.cc (revision 3983)
+++ tests/border/resize_image3d_2.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/adjust_full.cc
--- tests/border/adjust_full.cc (revision 3983)
+++ tests/border/adjust_full.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/resize_image3d_3.cc
--- tests/border/resize_image3d_3.cc (revision 3983)
+++ tests/border/resize_image3d_3.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/resize_sub_image.cc
--- tests/border/resize_sub_image.cc (revision 3983)
+++ tests/border/resize_sub_image.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/get.cc
--- tests/border/get.cc (revision 3983)
+++ tests/border/get.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/equalize.cc
--- tests/border/equalize.cc (revision 3983)
+++ tests/border/equalize.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/find.cc
--- tests/border/find.cc (revision 3983)
+++ tests/border/find.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/resize_image_if.cc
--- tests/border/resize_image_if.cc (revision 3983)
+++ tests/border/resize_image_if.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/resize_full.cc
--- tests/border/resize_full.cc (revision 3983)
+++ tests/border/resize_full.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/fill.cc
--- tests/border/fill.cc (revision 3983)
+++ tests/border/fill.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/resize_equal.cc
--- tests/border/resize_equal.cc (revision 3983)
+++ tests/border/resize_equal.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/border/adjust.cc
--- tests/border/adjust.cc (revision 3983)
+++ tests/border/adjust.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/make/w_window.cc
--- tests/make/w_window.cc (revision 3983)
+++ tests/make/w_window.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/make/dual_neighb.cc
--- tests/make/dual_neighb.cc (revision 3983)
+++ tests/make/dual_neighb.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/make/p_vertices_with_mass_centers.cc
--- tests/make/p_vertices_with_mass_centers.cc (revision 3983)
+++ tests/make/p_vertices_with_mass_centers.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/make/region_adjacency_graph.cc
--- tests/make/region_adjacency_graph.cc (revision 3983)
+++ tests/make/region_adjacency_graph.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/make/p_edges_with_mass_centers.cc
--- tests/make/p_edges_with_mass_centers.cc (revision 3983)
+++ tests/make/p_edges_with_mass_centers.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/make/image2d.cc
--- tests/make/image2d.cc (revision 3983)
+++ tests/make/image2d.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/make/image3d.cc
--- tests/make/image3d.cc (revision 3983)
+++ tests/make/image3d.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/make/w_window_directional.cc
--- tests/make/w_window_directional.cc (revision 3983)
+++ tests/make/w_window_directional.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/make/dummy_p_vertices.cc
--- tests/make/dummy_p_vertices.cc (revision 3983)
+++ tests/make/dummy_p_vertices.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/make/dummy_p_edges.cc
--- tests/make/dummy_p_edges.cc (revision 3983)
+++ tests/make/dummy_p_edges.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/make/mat.cc
--- tests/make/mat.cc (revision 3983)
+++ tests/make/mat.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/make/influence_zone_adjacency_graph.cc
--- tests/make/influence_zone_adjacency_graph.cc (revision 3983)
+++ tests/make/influence_zone_adjacency_graph.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/make/rag_and_labeled_wsl.cc
--- tests/make/rag_and_labeled_wsl.cc (revision 3983)
+++ tests/make/rag_and_labeled_wsl.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/make/h_mat.cc
--- tests/make/h_mat.cc (revision 3983)
+++ tests/make/h_mat.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/test/positive.cc
--- tests/test/positive.cc (revision 3983)
+++ tests/test/positive.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/convert/to_p_set.cc
--- tests/convert/to_p_set.cc (revision 3983)
+++ tests/convert/to_p_set.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/convert/to_rgb.cc
--- tests/convert/to_rgb.cc (revision 3983)
+++ tests/convert/to_rgb.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/convert/impl/from_site_set_to_image.cc
--- tests/convert/impl/from_site_set_to_image.cc (revision 3983)
+++ tests/convert/impl/from_site_set_to_image.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/convert/to_p_array.cc
--- tests/convert/to_p_array.cc (revision 3983)
+++ tests/convert/to_p_array.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/convert/to_image.cc
--- tests/convert/to_image.cc (revision 3983)
+++ tests/convert/to_image.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/convert/to_hsl.cc
--- tests/convert/to_hsl.cc (revision 3983)
+++ tests/convert/to_hsl.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/convert/to_window.cc
--- tests/convert/to_window.cc (revision 3983)
+++ tests/convert/to_window.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/estim/mean.cc
--- tests/estim/mean.cc (revision 3983)
+++ tests/estim/mean.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/estim/min_max.cc
--- tests/estim/min_max.cc (revision 3983)
+++ tests/estim/min_max.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/pw/value.cc
--- tests/pw/value.cc (revision 3983)
+++ tests/pw/value.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/pw/image.cc
--- tests/pw/image.cc (revision 3983)
+++ tests/pw/image.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/geom/max_sli.cc
--- tests/geom/max_sli.cc (revision 3983)
+++ tests/geom/max_sli.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/geom/nsites.cc
--- tests/geom/nsites.cc (revision 3983)
+++ tests/geom/nsites.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/geom/nrows.cc
--- tests/geom/nrows.cc (revision 3983)
+++ tests/geom/nrows.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/geom/seed2tiling_roundness.cc
--- tests/geom/seed2tiling_roundness.cc (revision 3983)
+++ tests/geom/seed2tiling_roundness.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/geom/seed2tiling.cc
--- tests/geom/seed2tiling.cc (revision 3983)
+++ tests/geom/seed2tiling.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/geom/min_row.cc
--- tests/geom/min_row.cc (revision 3983)
+++ tests/geom/min_row.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/geom/ninds.cc
--- tests/geom/ninds.cc (revision 3983)
+++ tests/geom/ninds.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/geom/max_row.cc
--- tests/geom/max_row.cc (revision 3983)
+++ tests/geom/max_row.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/geom/min_ind.cc
--- tests/geom/min_ind.cc (revision 3983)
+++ tests/geom/min_ind.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/geom/ncols.cc
--- tests/geom/ncols.cc (revision 3983)
+++ tests/geom/ncols.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/geom/max_ind.cc
--- tests/geom/max_ind.cc (revision 3983)
+++ tests/geom/max_ind.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/geom/min_col.cc
--- tests/geom/min_col.cc (revision 3983)
+++ tests/geom/min_col.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/geom/max_col.cc
--- tests/geom/max_col.cc (revision 3983)
+++ tests/geom/max_col.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/geom/pmin_pmax.cc
--- tests/geom/pmin_pmax.cc (revision 3983)
+++ tests/geom/pmin_pmax.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/geom/nslis.cc
--- tests/geom/nslis.cc (revision 3983)
+++ tests/geom/nslis.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/geom/min_sli.cc
--- tests/geom/min_sli.cc (revision 3983)
+++ tests/geom/min_sli.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/geom/bbox.cc
--- tests/geom/bbox.cc (revision 3983)
+++ tests/geom/bbox.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/fun/i2v/array.cc
--- tests/fun/i2v/array.cc (revision 3983)
+++ tests/fun/i2v/array.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/fun/i2v/value_at_index.cc
--- tests/fun/i2v/value_at_index.cc (revision 3983)
+++ tests/fun/i2v/value_at_index.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/fun/i2v/all_to.cc
--- tests/fun/i2v/all_to.cc (revision 3983)
+++ tests/fun/i2v/all_to.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/fun/v2i/index_of_value.cc
--- tests/fun/v2i/index_of_value.cc (revision 3983)
+++ tests/fun/v2i/index_of_value.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/fun/x2x/translation.cc
--- tests/fun/x2x/translation.cc (revision 3983)
+++ tests/fun/x2x/translation.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/fun/x2x/rotation.cc
--- tests/fun/x2x/rotation.cc (revision 3983)
+++ tests/fun/x2x/rotation.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/fun/x2x/composed.cc
--- tests/fun/x2x/composed.cc (revision 3983)
+++ tests/fun/x2x/composed.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/fun/p2p/translation.cc
--- tests/fun/p2p/translation.cc (revision 3983)
+++ tests/fun/p2p/translation.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/fun/p2p/fold.cc
--- tests/fun/p2p/fold.cc (revision 3983)
+++ tests/fun/p2p/fold.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/fun/vv2v/min.cc
--- tests/fun/vv2v/min.cc (revision 3983)
+++ tests/fun/vv2v/min.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/fun/vv2v/max.cc
--- tests/fun/vv2v/max.cc (revision 3983)
+++ tests/fun/vv2v/max.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/fun/ops.cc
--- tests/fun/ops.cc (revision 3983)
+++ tests/fun/ops.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/fun/stat/mahalanobis.cc
--- tests/fun/stat/mahalanobis.cc (revision 3983)
+++ tests/fun/stat/mahalanobis.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/fun/v2v/norm.cc
--- tests/fun/v2v/norm.cc (revision 3983)
+++ tests/fun/v2v/norm.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/fun/v2v/projection.cc
--- tests/fun/v2v/projection.cc (revision 3983)
+++ tests/fun/v2v/projection.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/fun/v2v/component.cc
--- tests/fun/v2v/component.cc (revision 3983)
+++ tests/fun/v2v/component.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/fun/v2v/hsl_to_rgb.cc
--- tests/fun/v2v/hsl_to_rgb.cc (revision 3983)
+++ tests/fun/v2v/hsl_to_rgb.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/fun/v2v/rgb_to_hsl.cc
--- tests/fun/v2v/rgb_to_hsl.cc (revision 3983)
+++ tests/fun/v2v/rgb_to_hsl.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/fun/v2v/wrap.cc
--- tests/fun/v2v/wrap.cc (revision 3983)
+++ tests/fun/v2v/wrap.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/binarization/threshold.cc
--- tests/binarization/threshold.cc (revision 3983)
+++ tests/binarization/threshold.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/set/uni.cc
--- tests/set/uni.cc (revision 3983)
+++ tests/set/uni.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/set/compute.cc
--- tests/set/compute.cc (revision 3983)
+++ tests/set/compute.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/set/sym_diff.cc
--- tests/set/sym_diff.cc (revision 3983)
+++ tests/set/sym_diff.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/set/inter.cc
--- tests/set/inter.cc (revision 3983)
+++ tests/set/inter.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/set/compute_with_weights.cc
--- tests/set/compute_with_weights.cc (revision 3983)
+++ tests/set/compute_with_weights.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/set/unique.cc
--- tests/set/unique.cc (revision 3983)
+++ tests/set/unique.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/set/diff.cc
--- tests/set/diff.cc (revision 3983)
+++ tests/set/diff.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/set/card.cc
--- tests/set/card.cc (revision 3983)
+++ tests/set/card.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/win/cuboid3d.cc
--- tests/win/cuboid3d.cc (revision 3983)
+++ tests/win/cuboid3d.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/win/vline2d.cc
--- tests/win/vline2d.cc (revision 3983)
+++ tests/win/vline2d.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/win/cube3d.cc
--- tests/win/cube3d.cc (revision 3983)
+++ tests/win/cube3d.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/win/diff.cc
--- tests/win/diff.cc (revision 3983)
+++ tests/win/diff.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/win/sym.cc
--- tests/win/sym.cc (revision 3983)
+++ tests/win/sym.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/win/ball.cc
--- tests/win/ball.cc (revision 3983)
+++ tests/win/ball.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/win/backdiag2d.cc
--- tests/win/backdiag2d.cc (revision 3983)
+++ tests/win/backdiag2d.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/win/sphere3d.cc
--- tests/win/sphere3d.cc (revision 3983)
+++ tests/win/sphere3d.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/win/shift.cc
--- tests/win/shift.cc (revision 3983)
+++ tests/win/shift.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/win/disk2d.cc
--- tests/win/disk2d.cc (revision 3983)
+++ tests/win/disk2d.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/win/octagon2d.cc
--- tests/win/octagon2d.cc (revision 3983)
+++ tests/win/octagon2d.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/win/inter.cc
--- tests/win/inter.cc (revision 3983)
+++ tests/win/inter.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/win/hline2d.cc
--- tests/win/hline2d.cc (revision 3983)
+++ tests/win/hline2d.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/win/segment1d.cc
--- tests/win/segment1d.cc (revision 3983)
+++ tests/win/segment1d.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/win/rectangle2d.cc
--- tests/win/rectangle2d.cc (revision 3983)
+++ tests/win/rectangle2d.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/win/diag2d.cc
--- tests/win/diag2d.cc (revision 3983)
+++ tests/win/diag2d.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/algebra/vec.cc
--- tests/algebra/vec.cc (revision 3983)
+++ tests/algebra/vec.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/algebra/vec2.cc
--- tests/algebra/vec2.cc (revision 3983)
+++ tests/algebra/vec2.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/algebra/op_times.cc
--- tests/algebra/op_times.cc (revision 3983)
+++ tests/algebra/op_times.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/algebra/mat.cc
--- tests/algebra/mat.cc (revision 3983)
+++ tests/algebra/mat.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/algebra/mat2.cc
--- tests/algebra/mat2.cc (revision 3983)
+++ tests/algebra/mat2.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/algebra/h_vec.cc
--- tests/algebra/h_vec.cc (revision 3983)
+++ tests/algebra/h_vec.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/algebra/h_mat.cc
--- tests/algebra/h_mat.cc (revision 3983)
+++ tests/algebra/h_mat.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/algebra/quat.cc
--- tests/algebra/quat.cc (revision 3983)
+++ tests/algebra/quat.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/global_vars1.cc
--- tests/global_vars1.cc (revision 3983)
+++ tests/global_vars1.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/gradient.cc
--- tests/morpho/gradient.cc (revision 3983)
+++ tests/morpho/gradient.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/contrast.cc
--- tests/morpho/contrast.cc (revision 3983)
+++ tests/morpho/contrast.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/artificial_line_graph_image_wst.cc
--- tests/morpho/artificial_line_graph_image_wst.cc (revision 3983)
+++ tests/morpho/artificial_line_graph_image_wst.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/top_hat.cc
--- tests/morpho/top_hat.cc (revision 3983)
+++ tests/morpho/top_hat.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/graph_image_wst.cc
--- tests/morpho/graph_image_wst.cc (revision 3983)
+++ tests/morpho/graph_image_wst.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/watershed/flooding.cc
--- tests/morpho/watershed/flooding.cc (revision 3983)
+++ tests/morpho/watershed/flooding.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/watershed/superpose.cc
--- tests/morpho/watershed/superpose.cc (revision 3983)
+++ tests/morpho/watershed/superpose.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/dilation.cc
--- tests/morpho/dilation.cc (revision 3983)
+++ tests/morpho/dilation.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/Rd.cc
--- tests/morpho/Rd.cc (revision 3983)
+++ tests/morpho/Rd.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/line_graph_image_wst.cc
--- tests/morpho/line_graph_image_wst.cc (revision 3983)
+++ tests/morpho/line_graph_image_wst.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/closing/sum.cc
--- tests/morpho/closing/sum.cc (revision 3983)
+++ tests/morpho/closing/sum.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/closing/approx/structural.cc
--- tests/morpho/closing/approx/structural.cc (revision 3983)
+++ tests/morpho/closing/approx/structural.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/closing/leveling.cc
--- tests/morpho/closing/leveling.cc (revision 3983)
+++ tests/morpho/closing/leveling.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/closing/volume.cc
--- tests/morpho/closing/volume.cc (revision 3983)
+++ tests/morpho/closing/volume.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/closing/area.cc
--- tests/morpho/closing/area.cc (revision 3983)
+++ tests/morpho/closing/area.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/closing/height.cc
--- tests/morpho/closing/height.cc (revision 3983)
+++ tests/morpho/closing/height.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/closing/structural.cc
--- tests/morpho/closing/structural.cc (revision 3983)
+++ tests/morpho/closing/structural.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/closing/area_on_vertices.cc
--- tests/morpho/closing/area_on_vertices.cc (revision 3983)
+++ tests/morpho/closing/area_on_vertices.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/closing/algebraic.cc
--- tests/morpho/closing/algebraic.cc (revision 3983)
+++ tests/morpho/closing/algebraic.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/tree/compute_attribute_image.cc
--- tests/morpho/tree/compute_attribute_image.cc (revision 3983)
+++ tests/morpho/tree/compute_attribute_image.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/tree/filter/filter.cc
--- tests/morpho/tree/filter/filter.cc (revision 3983)
+++ tests/morpho/tree/filter/filter.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/tree/compute_parent.cc
--- tests/morpho/tree/compute_parent.cc (revision 3983)
+++ tests/morpho/tree/compute_parent.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/tree/max.cc
--- tests/morpho/tree/max.cc (revision 3983)
+++ tests/morpho/tree/max.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/tree/data.cc
--- tests/morpho/tree/data.cc (revision 3983)
+++ tests/morpho/tree/data.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/general.cc
--- tests/morpho/general.cc (revision 3983)
+++ tests/morpho/general.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/skeleton_constrained.cc
--- tests/morpho/skeleton_constrained.cc (revision 3983)
+++ tests/morpho/skeleton_constrained.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/meyer_wst.cc
--- tests/morpho/meyer_wst.cc (revision 3983)
+++ tests/morpho/meyer_wst.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/attribute/sum.cc
--- tests/morpho/attribute/sum.cc (revision 3983)
+++ tests/morpho/attribute/sum.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/attribute/volume.cc
--- tests/morpho/attribute/volume.cc (revision 3983)
+++ tests/morpho/attribute/volume.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/attribute/height.cc
--- tests/morpho/attribute/height.cc (revision 3983)
+++ tests/morpho/attribute/height.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/attribute/card.cc
--- tests/morpho/attribute/card.cc (revision 3983)
+++ tests/morpho/attribute/card.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/elementary/gradient.cc
--- tests/morpho/elementary/gradient.cc (revision 3983)
+++ tests/morpho/elementary/gradient.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/elementary/closing.cc
--- tests/morpho/elementary/closing.cc (revision 3983)
+++ tests/morpho/elementary/closing.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/elementary/erosion.cc
--- tests/morpho/elementary/erosion.cc (revision 3983)
+++ tests/morpho/elementary/erosion.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/elementary/top_hat.cc
--- tests/morpho/elementary/top_hat.cc (revision 3983)
+++ tests/morpho/elementary/top_hat.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/elementary/gradient_external.cc
--- tests/morpho/elementary/gradient_external.cc (revision 3983)
+++ tests/morpho/elementary/gradient_external.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/elementary/opening.cc
--- tests/morpho/elementary/opening.cc (revision 3983)
+++ tests/morpho/elementary/opening.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/elementary/dilation.cc
--- tests/morpho/elementary/dilation.cc (revision 3983)
+++ tests/morpho/elementary/dilation.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/elementary/laplacian.cc
--- tests/morpho/elementary/laplacian.cc (revision 3983)
+++ tests/morpho/elementary/laplacian.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/elementary/gradient_internal.cc
--- tests/morpho/elementary/gradient_internal.cc (revision 3983)
+++ tests/morpho/elementary/gradient_internal.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/approx/erosion.cc
--- tests/morpho/approx/erosion.cc (revision 3983)
+++ tests/morpho/approx/erosion.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/approx/dilation.cc
--- tests/morpho/approx/dilation.cc (revision 3983)
+++ tests/morpho/approx/dilation.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/lena_line_graph_image_wst1.cc
--- tests/morpho/lena_line_graph_image_wst1.cc (revision 3983)
+++ tests/morpho/lena_line_graph_image_wst1.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/reconstruction/by_erosion/union_find.cc
--- tests/morpho/reconstruction/by_erosion/union_find.cc (revision 3983)
+++ tests/morpho/reconstruction/by_erosion/union_find.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/reconstruction/by_dilation/union_find.cc
--- tests/morpho/reconstruction/by_dilation/union_find.cc (revision 3983)
+++ tests/morpho/reconstruction/by_dilation/union_find.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/complex_image_morpho.cc
--- tests/morpho/complex_image_morpho.cc (revision 3983)
+++ tests/morpho/complex_image_morpho.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/meyer_wst_long.cc
--- tests/morpho/meyer_wst_long.cc (revision 3983)
+++ tests/morpho/meyer_wst_long.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/line_graph_image_morpho.cc
--- tests/morpho/line_graph_image_morpho.cc (revision 3983)
+++ tests/morpho/line_graph_image_morpho.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/rank_filter.cc
--- tests/morpho/rank_filter.cc (revision 3983)
+++ tests/morpho/rank_filter.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/complex_image_wst.cc
--- tests/morpho/complex_image_wst.cc (revision 3983)
+++ tests/morpho/complex_image_wst.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/opening/sum.cc
--- tests/morpho/opening/sum.cc (revision 3983)
+++ tests/morpho/opening/sum.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/opening/approx/structural.cc
--- tests/morpho/opening/approx/structural.cc (revision 3983)
+++ tests/morpho/opening/approx/structural.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/opening/leveling.cc
--- tests/morpho/opening/leveling.cc (revision 3983)
+++ tests/morpho/opening/leveling.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/opening/volume.cc
--- tests/morpho/opening/volume.cc (revision 3983)
+++ tests/morpho/opening/volume.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/opening/area.cc
--- tests/morpho/opening/area.cc (revision 3983)
+++ tests/morpho/opening/area.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/opening/height.cc
--- tests/morpho/opening/height.cc (revision 3983)
+++ tests/morpho/opening/height.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/opening/structural.cc
--- tests/morpho/opening/structural.cc (revision 3983)
+++ tests/morpho/opening/structural.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/opening/area_on_vertices.cc
--- tests/morpho/opening/area_on_vertices.cc (revision 3983)
+++ tests/morpho/opening/area_on_vertices.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/opening/algebraic.cc
--- tests/morpho/opening/algebraic.cc (revision 3983)
+++ tests/morpho/opening/algebraic.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/thinning.cc
--- tests/morpho/thinning.cc (revision 3983)
+++ tests/morpho/thinning.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/erosion.cc
--- tests/morpho/erosion.cc (revision 3983)
+++ tests/morpho/erosion.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/hit_or_miss.cc
--- tests/morpho/hit_or_miss.cc (revision 3983)
+++ tests/morpho/hit_or_miss.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/laplacian.cc
--- tests/morpho/laplacian.cc (revision 3983)
+++ tests/morpho/laplacian.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/graph_image_morpho.cc
--- tests/morpho/graph_image_morpho.cc (revision 3983)
+++ tests/morpho/graph_image_morpho.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/morpho/lena_line_graph_image_wst2.cc
--- tests/morpho/lena_line_graph_image_wst2.cc (revision 3983)
+++ tests/morpho/lena_line_graph_image_wst2.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/display/all_headers.cc
--- tests/display/all_headers.cc (revision 3983)
+++ tests/display/all_headers.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/io/pgm/pgm_ascii.cc
--- tests/io/pgm/pgm_ascii.cc (revision 3983)
+++ tests/io/pgm/pgm_ascii.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/io/pgm/pgm27.cc
--- tests/io/pgm/pgm27.cc (revision 3983)
+++ tests/io/pgm/pgm27.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/io/pgm/pgm19.cc
--- tests/io/pgm/pgm19.cc (revision 3983)
+++ tests/io/pgm/pgm19.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/io/pgm/pgm.cc
--- tests/io/pgm/pgm.cc (revision 3983)
+++ tests/io/pgm/pgm.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/io/pgm/pgm16.cc
--- tests/io/pgm/pgm16.cc (revision 3983)
+++ tests/io/pgm/pgm16.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/io/fits/fits.cc
--- tests/io/fits/fits.cc (revision 3983)
+++ tests/io/fits/fits.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/io/dump/dump.cc
--- tests/io/dump/dump.cc (revision 3983)
+++ tests/io/dump/dump.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/io/tiff/load.cc
--- tests/io/tiff/load.cc (revision 3983)
+++ tests/io/tiff/load.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/io/off/load_float.cc
--- tests/io/off/load_float.cc (revision 3983)
+++ tests/io/off/load_float.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/io/off/load_save_bin.cc
--- tests/io/off/load_save_bin.cc (revision 3983)
+++ tests/io/off/load_save_bin.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/io/off/load_bin.cc
--- tests/io/off/load_bin.cc (revision 3983)
+++ tests/io/off/load_bin.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/io/dicom/dicom.cc
--- tests/io/dicom/dicom.cc (revision 3983)
+++ tests/io/dicom/dicom.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/io/magick/save.cc
--- tests/io/magick/save.cc (revision 3983)
+++ tests/io/magick/save.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/io/magick/load.cc
--- tests/io/magick/load.cc (revision 3983)
+++ tests/io/magick/load.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/io/ppm/ppm.cc
--- tests/io/ppm/ppm.cc (revision 3983)
+++ tests/io/ppm/ppm.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/io/ppm/ppm23.cc
--- tests/io/ppm/ppm23.cc (revision 3983)
+++ tests/io/ppm/ppm23.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/io/ppm/ppm16.cc
--- tests/io/ppm/ppm16.cc (revision 3983)
+++ tests/io/ppm/ppm16.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/io/pbm/pbm.cc
--- tests/io/pbm/pbm.cc (revision 3983)
+++ tests/io/pbm/pbm.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/io/pbm/pbm_ascii.cc
--- tests/io/pbm/pbm_ascii.cc (revision 3983)
+++ tests/io/pbm/pbm_ascii.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/logical/not.cc
--- tests/logical/not.cc (revision 3983)
+++ tests/logical/not.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/logical/or.cc
--- tests/logical/or.cc (revision 3983)
+++ tests/logical/or.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/logical/and.cc
--- tests/logical/and.cc (revision 3983)
+++ tests/logical/and.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/logical/and_not.cc
--- tests/logical/and_not.cc (revision 3983)
+++ tests/logical/and_not.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/logical/all_headers.cc
--- tests/logical/all_headers.cc (revision 3983)
+++ tests/logical/all_headers.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/logical/xor.cc
--- tests/logical/xor.cc (revision 3983)
+++ tests/logical/xor.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/registration/registration.cc
--- tests/registration/registration.cc (revision 3983)
+++ tests/registration/registration.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/canvas/morpho/attribute_filter.cc
--- tests/canvas/morpho/attribute_filter.cc (revision 3983)
+++ tests/canvas/morpho/attribute_filter.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/canvas/chamfer.cc
--- tests/canvas/chamfer.cc (revision 3983)
+++ tests/canvas/chamfer.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/canvas/browsing/fwd.cc
--- tests/canvas/browsing/fwd.cc (revision 3983)
+++ tests/canvas/browsing/fwd.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/canvas/browsing/depth_first_search.cc
--- tests/canvas/browsing/depth_first_search.cc (revision 3983)
+++ tests/canvas/browsing/depth_first_search.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/canvas/browsing/snake_fwd.cc
--- tests/canvas/browsing/snake_fwd.cc (revision 3983)
+++ tests/canvas/browsing/snake_fwd.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/canvas/browsing/snake_vert.cc
--- tests/canvas/browsing/snake_vert.cc (revision 3983)
+++ tests/canvas/browsing/snake_vert.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/canvas/browsing/snake_generic_2d_vert.cc
--- tests/canvas/browsing/snake_generic_2d_vert.cc (revision 3983)
+++ tests/canvas/browsing/snake_generic_2d_vert.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/canvas/browsing/dir_struct_elt_incr_update.cc
--- tests/canvas/browsing/dir_struct_elt_incr_update.cc (revision 3983)
+++ tests/canvas/browsing/dir_struct_elt_incr_update.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/canvas/browsing/snake_generic_2d_hori.cc
--- tests/canvas/browsing/snake_generic_2d_hori.cc (revision 3983)
+++ tests/canvas/browsing/snake_generic_2d_hori.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/canvas/browsing/snake_generic_3d_vert.cc
--- tests/canvas/browsing/snake_generic_3d_vert.cc (revision 3983)
+++ tests/canvas/browsing/snake_generic_3d_vert.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/canvas/browsing/diagonal2d.cc
--- tests/canvas/browsing/diagonal2d.cc (revision 3983)
+++ tests/canvas/browsing/diagonal2d.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/canvas/browsing/hyper_directional.cc
--- tests/canvas/browsing/hyper_directional.cc (revision 3983)
+++ tests/canvas/browsing/hyper_directional.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/canvas/browsing/snake_generic_3d_hori.cc
--- tests/canvas/browsing/snake_generic_3d_hori.cc (revision 3983)
+++ tests/canvas/browsing/snake_generic_3d_hori.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/canvas/browsing/backdiagonal2d.cc
--- tests/canvas/browsing/backdiagonal2d.cc (revision 3983)
+++ tests/canvas/browsing/backdiagonal2d.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/canvas/browsing/breadth_first_search.cc
--- tests/canvas/browsing/breadth_first_search.cc (revision 3983)
+++ tests/canvas/browsing/breadth_first_search.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/norm/l1.cc
--- tests/norm/l1.cc (revision 3983)
+++ tests/norm/l1.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/norm/l2.cc
--- tests/norm/l2.cc (revision 3983)
+++ tests/norm/l2.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/norm/common.hh
--- tests/norm/common.hh (revision 3983)
+++ tests/norm/common.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/norm/linfty.cc
--- tests/norm/linfty.cc (revision 3983)
+++ tests/norm/linfty.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/extension/fill.cc
--- tests/extension/fill.cc (revision 3983)
+++ tests/extension/fill.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/labeling/regional_maxima.cc
--- tests/labeling/regional_maxima.cc (revision 3983)
+++ tests/labeling/regional_maxima.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/labeling/mean_values.cc
--- tests/labeling/mean_values.cc (revision 3983)
+++ tests/labeling/mean_values.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/labeling/blobs.cc
--- tests/labeling/blobs.cc (revision 3983)
+++ tests/labeling/blobs.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/labeling/n_max.cc
--- tests/labeling/n_max.cc (revision 3983)
+++ tests/labeling/n_max.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/labeling/flat_zones.cc
--- tests/labeling/flat_zones.cc (revision 3983)
+++ tests/labeling/flat_zones.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/labeling/relabel.cc
--- tests/labeling/relabel.cc (revision 3983)
+++ tests/labeling/relabel.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/labeling/wrap.cc
--- tests/labeling/wrap.cc (revision 3983)
+++ tests/labeling/wrap.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/labeling/foreground.cc
--- tests/labeling/foreground.cc (revision 3983)
+++ tests/labeling/foreground.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/labeling/compute.cc
--- tests/labeling/compute.cc (revision 3983)
+++ tests/labeling/compute.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/labeling/value.cc
--- tests/labeling/value.cc (revision 3983)
+++ tests/labeling/value.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
// Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/labeling/pack.cc
--- tests/labeling/pack.cc (revision 3983)
+++ tests/labeling/pack.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/labeling/background.cc
--- tests/labeling/background.cc (revision 3983)
+++ tests/labeling/background.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/labeling/fill_holes.cc
--- tests/labeling/fill_holes.cc (revision 3983)
+++ tests/labeling/fill_holes.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/labeling/colorize.cc
--- tests/labeling/colorize.cc (revision 3983)
+++ tests/labeling/colorize.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/labeling/regional_minima.cc
--- tests/labeling/regional_minima.cc (revision 3983)
+++ tests/labeling/regional_minima.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/util/set.cc
--- tests/util/set.cc (revision 3983)
+++ tests/util/set.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/util/tree.cc
--- tests/util/tree.cc (revision 3983)
+++ tests/util/tree.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/util/ord_pair.cc
--- tests/util/ord_pair.cc (revision 3983)
+++ tests/util/ord_pair.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/util/yes.cc
--- tests/util/yes.cc (revision 3983)
+++ tests/util/yes.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/util/graph.cc
--- tests/util/graph.cc (revision 3983)
+++ tests/util/graph.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/util/all_headers.cc
--- tests/util/all_headers.cc (revision 3983)
+++ tests/util/all_headers.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/util/tree_to_image.cc
--- tests/util/tree_to_image.cc (revision 3983)
+++ tests/util/tree_to_image.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/util/adjacency_matrix.cc
--- tests/util/adjacency_matrix.cc (revision 3983)
+++ tests/util/adjacency_matrix.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/util/line_graph.cc
--- tests/util/line_graph.cc (revision 3983)
+++ tests/util/line_graph.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright(C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/util/soft_heap.cc
--- tests/util/soft_heap.cc (revision 3983)
+++ tests/util/soft_heap.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/util/eat.cc
--- tests/util/eat.cc (revision 3983)
+++ tests/util/eat.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/util/branch_iter_ind.cc
--- tests/util/branch_iter_ind.cc (revision 3983)
+++ tests/util/branch_iter_ind.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/util/fibonacci_heap.cc
--- tests/util/fibonacci_heap.cc (revision 3983)
+++ tests/util/fibonacci_heap.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/util/lemmings.cc
--- tests/util/lemmings.cc (revision 3983)
+++ tests/util/lemmings.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/util/tree_fast.cc
--- tests/util/tree_fast.cc (revision 3983)
+++ tests/util/tree_fast.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/util/tree_to_fast.cc
--- tests/util/tree_to_fast.cc (revision 3983)
+++ tests/util/tree_to_fast.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/util/tree_fast_to_image.cc
--- tests/util/tree_fast_to_image.cc (revision 3983)
+++ tests/util/tree_fast_to_image.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/util/branch_iter.cc
--- tests/util/branch_iter.cc (revision 3983)
+++ tests/util/branch_iter.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/util/lazy_set.cc
--- tests/util/lazy_set.cc (revision 3983)
+++ tests/util/lazy_set.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: tests/timer.hh
--- tests/timer.hh (revision 3983)
+++ tests/timer.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: apps/statues/mesh-max-curv.cc
--- apps/statues/mesh-max-curv.cc (revision 3983)
+++ apps/statues/mesh-max-curv.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: apps/statues/mesh-complex-skel.cc
--- apps/statues/mesh-complex-skel.cc (revision 3983)
+++ apps/statues/mesh-complex-skel.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: apps/statues/save_bin_alt.hh
--- apps/statues/save_bin_alt.hh (revision 3983)
+++ apps/statues/save_bin_alt.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: apps/statues/mesh-complex-max-curv.cc
--- apps/statues/mesh-complex-max-curv.cc (revision 3983)
+++ apps/statues/mesh-complex-max-curv.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: apps/statues/io.hh
--- apps/statues/io.hh (revision 3983)
+++ apps/statues/io.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: apps/statues/mesh-pinv-curv.cc
--- apps/statues/mesh-pinv-curv.cc (revision 3983)
+++ apps/statues/mesh-pinv-curv.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: apps/statues/mesh-segm.cc
--- apps/statues/mesh-segm.cc (revision 3983)
+++ apps/statues/mesh-segm.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: apps/statues/trimesh/misc.hh
--- apps/statues/trimesh/misc.hh (revision 3983)
+++ apps/statues/trimesh/misc.hh (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: apps/statues/mesh-skel.cc
--- apps/statues/mesh-skel.cc (revision 3983)
+++ apps/statues/mesh-skel.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: apps/statues/mesh-complex-segm.cc
--- apps/statues/mesh-complex-segm.cc (revision 3983)
+++ apps/statues/mesh-complex-segm.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: apps/statues/mesh-complex-max-curv-segm.cc
--- apps/statues/mesh-complex-max-curv-segm.cc (revision 3983)
+++ apps/statues/mesh-complex-max-curv-segm.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: doc/oldies/2008__tour1.cc
--- doc/oldies/2008__tour1.cc (revision 3983)
+++ doc/oldies/2008__tour1.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2001, 2007, 2008 EPITA Research and Development
// Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: doc/oldies/2008__tour2.cc
--- doc/oldies/2008__tour2.cc (revision 3983)
+++ doc/oldies/2008__tour2.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2001, 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: doc/oldies/2008__tour3.cc
--- doc/oldies/2008__tour3.cc (revision 3983)
+++ doc/oldies/2008__tour3.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2001, 2007, 2008 EPITA Research and Development
// Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: doc/oldies/2008__tour1_extra.cc
--- doc/oldies/2008__tour1_extra.cc (revision 3983)
+++ doc/oldies/2008__tour1_extra.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007 EPITA Research and Development Laboratory
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: doc/benchmark/canvas.cc
--- doc/benchmark/canvas.cc (revision 3983)
+++ doc/benchmark/canvas.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: doc/benchmark/morpho/erosion.cc
--- doc/benchmark/morpho/erosion.cc (revision 3983)
+++ doc/benchmark/morpho/erosion.cc (working copy)
@@ -1,7 +1,7 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
// (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: doc/benchmark/median/median_bench.cc
--- doc/benchmark/median/median_bench.cc (revision 3983)
+++ doc/benchmark/median/median_bench.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: doc/tools/sample_utils.hh
--- doc/tools/sample_utils.hh (revision 3983)
+++ doc/tools/sample_utils.hh (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: doc/examples/trash/labeling_algo.cc
--- doc/examples/trash/labeling_algo.cc (revision 3983)
+++ doc/examples/trash/labeling_algo.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: doc/examples/trash/graph.cc
--- doc/examples/trash/graph.cc (revision 3983)
+++ doc/examples/trash/graph.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: doc/examples/trash/erosion.cc
--- doc/examples/trash/erosion.cc (revision 3983)
+++ doc/examples/trash/erosion.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
Index: doc/examples/trash/mk_graph.cc
--- doc/examples/trash/mk_graph.cc (revision 3983)
+++ doc/examples/trash/mk_graph.cc (working copy)
@@ -1,6 +1,6 @@
// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE)
//
-// This file is part of the Olena Library. This library is free
+// This file is part of the Milena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License version 2 as published by the
// Free Software Foundation.
3
3
03 Jun '09
* COPYING: Update from
http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
---
COPYING | 15 +++++++--------
ChangeLog | 7 +++++++
2 files changed, 14 insertions(+), 8 deletions(-)
diff --git a/COPYING b/COPYING
index 8f0f085..d511905 100644
--- a/COPYING
+++ b/COPYING
@@ -1,8 +1,8 @@
GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
- Copyright (C) 1989, 1991, 2006 Free Software Foundation, Inc.
- 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
@@ -15,7 +15,7 @@ software--to make sure the software is free for all its users. This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it. (Some other Free Software Foundation software is covered by
-the GNU Library General Public License instead.) You can apply it to
+the GNU Lesser General Public License instead.) You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
@@ -303,10 +303,9 @@ the "copyright" line and a pointer to where the full notice is found.
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
- along with this program; if not, write to the Free Software
- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-
+ You should have received a copy of the GNU General Public License along
+ with this program; if not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Also add information on how to contact you by electronic and paper mail.
@@ -336,5 +335,5 @@ necessary. Here is a sample; alter the names:
This General Public License does not permit incorporating your program into
proprietary programs. If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
-library. If this is what you want to do, use the GNU Library General
+library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License.
diff --git a/ChangeLog b/ChangeLog
index 8fba8f2..46faf65 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,11 @@
2009-06-03 Roland Levillain <roland(a)lrde.epita.fr>
+
+ Update the shipped GNU General Public License (GPL) text.
+
+ * COPYING: Update from
+ http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
+
+2009-06-03 Roland Levillain <roland(a)lrde.epita.fr>
Add tentative support for GDCM in the configuration system.
--
1.6.1.2
1
0