scripts/update-libstd-tag
author alpar
Tue, 06 Feb 2007 19:16:26 +0000
changeset 2355 ac0d843b8873
permissions -rwxr-xr-x
Two new distributions added:
- Gaussian distribution generated using the polar form of the Box-Muller
transformation,
- Exponential distribution generated using inverse cdf.
     1 #!/bin/bash
     2 
     3 cd ${0%update-libstd-tag}../doc
     4 mv libstdc++.tag libstdc++.tag.old
     5 wget http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/libstdc++.tag &&
     6 rm libstdc++.tag.old || mv libstdc++.tag.old libstdc++.tag
     7