Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.math
Commits
ab172363
Commit
ab172363
authored
Mar 26, 2014
by
Manuel Günther
Browse files
Removed the dependence to numpydoc.
parent
be418d2c
Changes
4
Hide whitespace changes
Inline
Side-by-side
buildout.cfg
View file @
ab172363
...
...
@@ -21,7 +21,6 @@ prefixes = /idiap/group/torch5spro/nightlies/last/bob/linux-x86_64-release
[sources]
xbob.extension = git https://github.com/bioidiap/xbob.extension branch=prototype
xbob.blitz = git https://github.com/bioidiap/xbob.blitz
numpydoc = git https://github.com/numpy/numpydoc
[scripts]
recipe = xbob.buildout:scripts
doc/conf.py
View file @
ab172363
...
...
@@ -31,13 +31,8 @@ extensions = [
'sphinx.ext.autosummary'
,
'sphinx.ext.doctest'
,
'sphinx.ext.intersphinx'
,
'numpydoc'
,
]
# See: https://github.com/phn/pytpm/issues/3
numpydoc_show_class_members
=
False
# See... figured out myself :-(
numpydoc_class_members_toctree
=
False
# The viewcode extension appeared only on Sphinx >= 1.0.0
import
sphinx
...
...
@@ -256,7 +251,7 @@ autodoc_member_order = 'bysource'
autodoc_default_flags
=
[
'members'
,
'undoc-members'
,
'private-members'
,
'private-members'
,
'inherited-members'
,
'show-inheritance'
,
]
...
...
setup.py
View file @
ab172363
...
...
@@ -35,7 +35,6 @@ setup(
'setuptools'
,
'xbob.blitz'
,
'xbob.extension'
,
'numpydoc'
,
],
namespace_packages
=
[
...
...
xbob/math/lp_interior_point.cpp
View file @
ab172363
...
...
@@ -1595,7 +1595,7 @@ static PyObject* PyBobMathLpInteriorPointLongstep_RichCompare
static
auto
s_is_in_vinf
=
xbob
::
extension
::
FunctionDoc
(
"is_in_v"
,
"Checks if a primal-dual point (x, lambda, mu) belongs to the V-Inf neighborhood of the central path."
,
".. todo:: This documenation looks wrong since lambda is not part of the parameters"
".. todo:: This documen
t
ation looks wrong since lambda is not part of the parameters"
)
.
add_prototype
(
"x, mu, gamma"
,
"test"
)
.
add_return
(
"test"
,
"bool"
,
"``True`` if (x, lambda, mu) belong to the V-Inf neighborhood of the central path, otherwise ``False``"
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment