Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Doxygen warnings #2400

Merged
merged 40 commits into from May 16, 2020
Merged
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
56d3365
Fix the latex ELiSH expression.
zoq May 9, 2020
d3057f9
Use the correct expression.
zoq May 10, 2020
81d1dea
latex errors, unfixed as of yet
birm May 10, 2020
8d2ca2d
section name duplication
birm May 10, 2020
3507262
wrong and ambigious @file
birm May 10, 2020
da53245
fix tex for r2
birm May 10, 2020
989e9c0
tex fix mish
birm May 10, 2020
e21aa1b
Configure doxygen to immediately stop when a warning is encountered.
zoq May 10, 2020
1c5e1c8
namespece fix
birm May 10, 2020
e82643e
Do not use '\begin{equation}' to open another math environment.
zoq May 10, 2020
5037868
another dummyclass
birm May 10, 2020
fa875aa
don't try to document ens namespace
birm May 10, 2020
a5ccd71
changing [] to {} fixed somehow
birm May 10, 2020
2f13255
use namespace
birm May 11, 2020
1d5e9b7
re-add namespace qualifier
birm May 11, 2020
c02c006
try using standard format
birm May 11, 2020
65627ef
realign
birm May 11, 2020
1b6bba5
no idea what tutorial is being referenced
birm May 11, 2020
b5515bf
command and ref cleanup
birm May 11, 2020
1565765
doc fixes
birm May 11, 2020
3986361
fix missing, unused, wrong params
birm May 11, 2020
9eb9b31
backtrace style warn fix
birm May 11, 2020
a2acefb
Re-add "Regularization" to param str
birm May 11, 2020
dca79bb
remaining errs
birm May 11, 2020
0599cd0
No more breaking changes please :)
birm May 11, 2020
7c45bdd
Merge branch 'doxy-warn-err' of https://github.com/birm/mlpack into d…
birm May 11, 2020
c03136e
Realign namespace open braces
birm May 11, 2020
799b7e2
align params for SVDWrapper
birm May 11, 2020
f3ad22b
Merge remote-tracking branch 'zoq/elish-latex-fix' into doxy-warn-err
birm May 12, 2020
8f87dbb
Incorporate easily-incorporated suggestions
birm May 13, 2020
67bc405
suggestions which required testing
birm May 13, 2020
46d94d9
fix cf tutorial refs
birm May 13, 2020
3c65293
Add missing href end quote
birm May 13, 2020
496d121
use fuller path names
birm May 13, 2020
df42a83
Merge branch 'doxy-warn-err' of https://github.com/birm/mlpack into d…
birm May 13, 2020
0679529
ens ref to c
birm May 13, 2020
8bc4d69
re-add hpt refs
birm May 13, 2020
6ff6b88
NO_DOXYGEN more descriptive
birm May 13, 2020
420c63c
Merge remote-tracking branch 'upstream/master' into doxy-warn-err
birm May 15, 2020
a52b52f
use full path for normal dist
birm May 15, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/tutorials/det/det.txt
Expand Up @@ -344,9 +344,9 @@ For further documentation on the DTree class, consult the
The usual regularized error \f$R_\alpha(t)\f$ of a node \f$t\f$ is given by:
\f$R_\alpha(t) = R(t) + \alpha |\tilde{t}|\f$ where

\f[
\f{
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't know why this fixed this, or why it was an issue. Not a latex person.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If I remember right \f{ wil not center the formula, really strange that we get a warning here.

R(t) = -\frac{|t|^2}{N^2 V(t)}.
\f]
\f}

\f$V(t)\f$ is the volume of the node \f$t\f$ and \f$\tilde{t}\f$ is
the set of leaves in the subtree rooted at \f$t\f$.
Expand Down