Skip to content

Commit ffd89df

Browse files
author
Martin D. Weinberg
committed
Added defaults for 'verbose'
1 parent cfad2a5 commit ffd89df

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

pyEXP/CoefWrappers.cc

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1053,7 +1053,7 @@ void CoefficientClasses(py::module &m) {
10531053
type : str
10541054
type of coefficient container
10551055
verbose : bool
1056-
display verbose information.
1056+
display verbose information (default=False)
10571057
10581058
Returns
10591059
-------
@@ -1066,7 +1066,7 @@ void CoefficientClasses(py::module &m) {
10661066
simulation
10671067
)",
10681068
py::arg("type"),
1069-
py::arg("verbose"))
1069+
py::arg("verbose")=false)
10701070
.def("__call__",
10711071
&CoefClasses::Coefs::getData,
10721072
R"(
@@ -1358,12 +1358,12 @@ void CoefficientClasses(py::module &m) {
13581358
Parameters
13591359
----------
13601360
verbose : bool
1361-
display verbose information.
1361+
display verbose information (default=False)
13621362
13631363
Returns
13641364
-------
13651365
SphCoefs instance
1366-
)")
1366+
)", py::arg("verbose")=false)
13671367
.def("__call__",
13681368
&CoefClasses::SphCoefs::getMatrix,
13691369
R"(
@@ -1433,12 +1433,12 @@ void CoefficientClasses(py::module &m) {
14331433
Parameters
14341434
----------
14351435
verbose : bool
1436-
display verbose information.
1436+
display verbose information (default=False)
14371437
14381438
Returns
14391439
-------
14401440
CylCoefs instance
1441-
)")
1441+
)", py::arg("verbose")=false)
14421442
.def("__call__",
14431443
&CoefClasses::CylCoefs::getMatrix,
14441444
R"(
@@ -1535,12 +1535,12 @@ void CoefficientClasses(py::module &m) {
15351535
Parameters
15361536
----------
15371537
verbose : bool
1538-
display verbose information.
1538+
display verbose information (default=False)
15391539
15401540
Returns
15411541
-------
15421542
SphFldCoefs instance
1543-
)")
1543+
)", py::arg("verbose")=false)
15441544
.def("__call__",
15451545
[](CoefClasses::SphFldCoefs& A, double time)
15461546
{
@@ -1620,12 +1620,12 @@ void CoefficientClasses(py::module &m) {
16201620
Parameters
16211621
----------
16221622
verbose : bool
1623-
display verbose information.
1623+
display verbose information (default=False)
16241624
16251625
Returns
16261626
-------
16271627
CylFldCoefs instance
1628-
)")
1628+
)", py::arg("verbose")=false)
16291629
.def("__call__",
16301630
[](CoefClasses::CylFldCoefs& A, double time)
16311631
{
@@ -1699,12 +1699,12 @@ void CoefficientClasses(py::module &m) {
16991699
Parameters
17001700
----------
17011701
verbose : bool
1702-
display verbose information.
1702+
display verbose information (default=False)
17031703
17041704
Returns
17051705
-------
17061706
SlabCoefs instance
1707-
)")
1707+
)", py::arg("verbose")=false)
17081708
.def("__call__",
17091709
&CoefClasses::SlabCoefs::getTensor,
17101710
R"(
@@ -1793,12 +1793,12 @@ void CoefficientClasses(py::module &m) {
17931793
Parameters
17941794
----------
17951795
verbose : bool
1796-
display verbose information.
1796+
display verbose information (default=False)
17971797
17981798
Returns
17991799
-------
18001800
CubeCoefs instance
1801-
)")
1801+
)", py::arg("verbose")=false)
18021802
.def("__call__",
18031803
&CoefClasses::CubeCoefs::getTensor,
18041804
R"(
@@ -1886,7 +1886,7 @@ void CoefficientClasses(py::module &m) {
18861886
Parameters
18871887
----------
18881888
verbose : bool
1889-
display verbose information.
1889+
display verbose information (default=True)
18901890
18911891
Returns
18921892
-------
@@ -1914,7 +1914,7 @@ void CoefficientClasses(py::module &m) {
19141914
type : str
19151915
ascii table data file
19161916
verbose : bool
1917-
display verbose information.
1917+
display verbose information (default=True)
19181918
19191919
Returns
19201920
-------
@@ -1931,7 +1931,7 @@ void CoefficientClasses(py::module &m) {
19311931
array : ndarray
19321932
data columns
19331933
verbose : bool
1934-
display verbose information.
1934+
display verbose information (default=True)
19351935
19361936
Returns
19371937
-------
@@ -1956,7 +1956,7 @@ void CoefficientClasses(py::module &m) {
19561956
Parameters
19571957
----------
19581958
verbose : bool
1959-
display verbose information.
1959+
display verbose information (default=True)
19601960
19611961
Returns
19621962
-------
@@ -1984,7 +1984,7 @@ void CoefficientClasses(py::module &m) {
19841984
type : str
19851985
ascii table data file
19861986
verbose : bool
1987-
display verbose information.
1987+
display verbose information (default=True)
19881988
19891989
Returns
19901990
-------
@@ -2001,7 +2001,7 @@ void CoefficientClasses(py::module &m) {
20012001
array : ndarray
20022002
data columns
20032003
verbose : bool
2004-
display verbose information.
2004+
display verbose information (default=True)
20052005
20062006
Returns
20072007
-------

0 commit comments

Comments
 (0)