Skip to content

Commit 9d9f3b6

Browse files
committed
fix Copyright notices
1 parent 11022d3 commit 9d9f3b6

File tree

11 files changed

+66
-90
lines changed

11 files changed

+66
-90
lines changed

quantlib/indexes/ibor/libor.pyx

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
"""
2-
Copyright (C) 2011, Enthought Inc
3-
Copyright (C) 2011, Patrick Henaff
4-
5-
This program is distributed in the hope that it will be useful, but WITHOUT
6-
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
7-
FOR A PARTICULAR PURPOSE. See the license for more details.
8-
"""
1+
# Copyright (C) 2011, Enthought Inc
2+
# Copyright (C) 2011, Patrick Henaff
3+
#
4+
# This program is distributed in the hope that it will be useful, but WITHOUT
5+
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
6+
# FOR A PARTICULAR PURPOSE. See the license for more details.
97

108
include '../../types.pxi'
119

quantlib/indexes/inflation_index.pyx

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
"""
2-
Copyright (C) 2016, Enthought Inc
3-
Copyright (C) 2016, Patrick Henaff
4-
5-
This program is distributed in the hope that it will be useful, but WITHOUT
6-
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
7-
FOR A PARTICULAR PURPOSE. See the license for more details.
8-
"""
1+
# Copyright (C) 2016, Enthought Inc
2+
# Copyright (C) 2016, Patrick Henaff
3+
#
4+
# This program is distributed in the hope that it will be useful, but WITHOUT
5+
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
6+
# FOR A PARTICULAR PURPOSE. See the license for more details.
97

108
include '../types.pxi'
119

quantlib/indexes/interest_rate_index.pyx

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
"""
2-
Copyright (C) 2011, Enthought Inc
3-
Copyright (C) 2011, Patrick Henaff
4-
5-
This program is distributed in the hope that it will be useful, but WITHOUT
6-
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
7-
FOR A PARTICULAR PURPOSE. See the license for more details.
8-
"""
1+
# Copyright (C) 2011, Enthought Inc
2+
# Copyright (C) 2011, Patrick Henaff
3+
#
4+
# This program is distributed in the hope that it will be useful, but WITHOUT
5+
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
6+
# FOR A PARTICULAR PURPOSE. See the license for more details.
97

108
include '../types.pxi'
119
from cython.operator cimport dereference as deref

quantlib/math/hestonhwcorrelationconstraint.pyx

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
1-
"""
2-
Copyright (C) 2015, Enthought Inc
3-
Copyright (C) 2015, Patrick Henaff
4-
5-
This program is distributed in the hope that it will be useful, but WITHOUT
6-
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
7-
FOR A PARTICULAR PURPOSE. See the license for more details.
8-
"""
9-
10-
include '../types.pxi'
1+
# Copyright (C) 2015, Enthought Inc
2+
# Copyright (C) 2015, Patrick Henaff
3+
#
4+
# This program is distributed in the hope that it will be useful, but WITHOUT
5+
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
6+
# FOR A PARTICULAR PURPOSE. See the license for more details.
117

128
from quantlib.handle cimport shared_ptr
139
from quantlib.math.optimization cimport Constraint

quantlib/models/calibration_helper.pyx

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
"""
2-
Copyright (C) 2015, Enthought Inc
3-
Copyright (C) 2015, Patrick Henaff
4-
5-
This program is distributed in the hope that it will be useful, but WITHOUT
6-
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
7-
FOR A PARTICULAR PURPOSE. See the license for more details.
8-
"""
1+
# Copyright (C) 2015, Enthought Inc
2+
# Copyright (C) 2015, Patrick Henaff
3+
#
4+
# This program is distributed in the hope that it will be useful, but WITHOUT
5+
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
6+
# FOR A PARTICULAR PURPOSE. See the license for more details.
97

108
from quantlib.types cimport Real, Size, Volatility
119
from quantlib.handle cimport shared_ptr

quantlib/models/equity/heston_model.pxd

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
"""
2-
Copyright (C) 2011, Enthought Inc
3-
Copyright (C) 2011, Patrick Henaff
4-
5-
This program is distributed in the hope that it will be useful, but WITHOUT
6-
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
7-
FOR A PARTICULAR PURPOSE. See the license for more details.
8-
"""
1+
# Copyright (C) 2011, Enthought Inc
2+
# Copyright (C) 2011, Patrick Henaff
3+
#
4+
# This program is distributed in the hope that it will be useful, but WITHOUT
5+
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
6+
# FOR A PARTICULAR PURPOSE. See the license for more details.
97

108
from . cimport _heston_model as _hm
119

quantlib/models/equity/heston_model.pyx

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
"""
2-
Copyright (C) 2011, Enthought Inc
3-
Copyright (C) 2011, Patrick Henaff
4-
5-
This program is distributed in the hope that it will be useful, but WITHOUT
6-
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
7-
FOR A PARTICULAR PURPOSE. See the license for more details.
8-
"""
1+
# Copyright (C) 2011, Enthought Inc
2+
# Copyright (C) 2011, Patrick Henaff
93

4+
# This program is distributed in the hope that it will be useful, but WITHOUT
5+
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
6+
# FOR A PARTICULAR PURPOSE. See the license for more details.
7+
""" Heston model for the stochastic volatility of an asset"""
108
from quantlib.types cimport Real
119
from libcpp cimport bool
1210
from cython.operator cimport dereference as deref

quantlib/models/model.pyx

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
"""
2-
Copyright (C) 2015, Enthought Inc
3-
Copyright (C) 2015, Patrick Henaff
4-
5-
This program is distributed in the hope that it will be useful, but WITHOUT
6-
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
7-
FOR A PARTICULAR PURPOSE. See the license for more details.
8-
"""
1+
# Copyright (C) 2015, Enthought Inc
2+
# Copyright (C) 2015, Patrick Henaff
3+
#
4+
# This program is distributed in the hope that it will be useful, but WITHOUT
5+
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
6+
# FOR A PARTICULAR PURPOSE. See the license for more details.
97

108
include '../types.pxi'
119

quantlib/models/shortrate/calibrationhelpers/swaption_helper.pyx

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
"""
2-
Copyright (C) 2015, Enthought Inc
3-
Copyright (C) 2015, Patrick Henaff
4-
5-
This program is distributed in the hope that it will be useful, but WITHOUT
6-
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
7-
FOR A PARTICULAR PURPOSE. See the license for more details.
8-
"""
1+
# Copyright (C) 2015, Enthought Inc
2+
# Copyright (C) 2015, Patrick Henaff
3+
#
4+
# This program is distributed in the hope that it will be useful, but WITHOUT
5+
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
6+
# FOR A PARTICULAR PURPOSE. See the license for more details.
97

108
from quantlib.types cimport Real
119
from quantlib.handle cimport Handle, shared_ptr, static_pointer_cast

quantlib/termstructures/inflation/seasonality.pyx

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
"""
2-
Copyright (C) 2016, Enthought Inc
3-
Copyright (C) 2016, Patrick Henaff
4-
5-
This program is distributed in the hope that it will be useful, but WITHOUT
6-
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
7-
FOR A PARTICULAR PURPOSE. See the license for more details.
8-
"""
1+
# Copyright (C) 2016, Enthought Inc
2+
# Copyright (C) 2016, Patrick Henaff
3+
#
4+
# This program is distributed in the hope that it will be useful, but WITHOUT
5+
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
6+
# FOR A PARTICULAR PURPOSE. See the license for more details.
97

108
from quantlib.types cimport Rate
119
from quantlib.handle cimport shared_ptr

0 commit comments

Comments
 (0)