Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 5428

Show
Ignore:
Timestamp:
03/29/10 16:13:16 (2 years ago)
Author:
larsivi
Message:

Some doc formatting fixes, thanks aziz

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/doc/dil/tango_doc.py

    r5275 r5428  
    5151LE = <= 
    5252GT = < 
     53CLN = : 
    5354%(favicon)s 
    5455""" % locals() 
  • trunk/tango/math/Elliptic.d

    r5425 r5428  
    211211 * Approximates the integral 
    212212 * 
    213  *   K(m) = $(INTEGRATE 0, &pi/2) dt/ (sqrt( 1- m $(POWER sin, 2) t)) 
     213 *   K(m) = $(INTEGRATE 0, &pi;/2) dt/ (sqrt( 1- m $(POWER sin, 2) t)) 
    214214 * 
    215215 * where m = 1 - x, using the approximation 
     
    226226 * This is equivalent to ellipticF(PI_2, 1-x). 
    227227 * 
    228  * K(0) = &pi/2. 
     228 * K(0) = &pi;/2. 
    229229 */ 
    230230 
     
    280280 * Approximates the integral 
    281281 * 
    282  * E(m) = $(INTEGRATE 0, &pi/2) sqrt( 1- m $(POWER sin, 2) t) dt 
     282 * E(m) = $(INTEGRATE 0, &pi;/2) sqrt( 1- m $(POWER sin, 2) t) dt 
    283283 * 
    284284 * where m = 1 - x, using the approximation 
     
    289289 * rather than m for compatibility with ellipticKComplete(). 
    290290 * 
    291  * E(1) = 1; E(0) = &pi/2. 
     291 * E(1) = 1; E(0) = &pi;/2. 
    292292 * m must be in the range 0 <= m <= 1. 
    293293 */ 
  • trunk/tango/util/digest/MerkleDamgard.d

    r5194 r5428  
    3434        In addition there exist two further abstract methods; these methods 
    3535        have empty default implementations since in some cases they are not  
    36         required: 
     36        required$(CLN) 
    3737        --- 
    3838        protected abstract void padLength(ubyte[] data, ulong length);