File: 97_fix_latex_doxygen.patch

package info (click to toggle)
vtk6 6.3.0%2Bdfsg2-8.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 118,972 kB
  • sloc: cpp: 1,442,790; ansic: 113,395; python: 72,383; tcl: 46,998; xml: 8,119; yacc: 4,525; java: 4,239; perl: 3,108; lex: 1,694; sh: 1,093; asm: 154; makefile: 68; objc: 17
file content (35 lines) | stat: -rw-r--r-- 1,479 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Description: Fix Latex code that made Dokygen halt the build
Author: Gert Wollny <gw.fossdev@gmail.com> 
Last-Update: 2016-02-02
Forwardedd: no
--- a/Common/Core/vtkAbstractArray.h
+++ b/Common/Core/vtkAbstractArray.h
@@ -384,7 +384,7 @@
   // prominence P, we sample N values, with N = f(T; P, U).
   // We want f to be sublinear in T in order to interactively handle large
   // arrays; in practice, we can make f independent of T:
-  // \f$ N >= \frac{5}{P}\mathrm{ln}\left(\frac{1}{PU}) \f$,
+  // \f$ N >= \frac{5}{P}\mathrm{ln}\left(\frac{1}{PU}\right) \f$,
   // but note that small values of P are costly to achieve.
   // The default parameters will locate prominent values that occur at least
   // 1 out of every 1000 samples with a confidence of 0.999999 (= 1 - 1e6).
--- a/Common/Core/vtkMath.h
+++ b/Common/Core/vtkMath.h
@@ -661,14 +661,14 @@
   // The output is provided by overwriting the input A with a matrix of the same size as
   // A containing all of the information about L and U. If the output matrix is
   // \f$ A* = \left( \begin{array}{cc}
-  // a & b \\ %
+  // a & b \\
   // c & d \end{array} \right)\f$
   // then L and U can be obtained as:
   // \f$ L = \left( \begin{array}{cc}
-  // 1 & 0 \\ %
+  // 1 & 0 \\
   // c & 1 \end{array} \right)\f$
   // \f$ U = \left( \begin{array}{cc}
-  // a & b \\ %
+  // a & b \\
   // 0 & d \end{array} \right)\f$
   //
   // That is, the diagonal of the resulting A* is the diagonal of U. The upper right