-
Notifications
You must be signed in to change notification settings - Fork 3
/
README
30 lines (18 loc) · 902 Bytes
/
README
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
A support package for numerical work with likelihood functions, with interfaces to the GNU Scientific Library (GSL) and Minuit2.
For details, see the documentation at:
http://c3.lbl.gov:8000/Trac.Cosmology/wiki/NumericalAlgorithms#likely
Contact David Kirkby <[email protected]> for questions or bug reports.
== Building on NERSC Platforms
Only works on hopper, until boost is installed on franklin:
module load gsl
module load boost
module swap PrgEnv-pgi PrgEnv-gnu
../configure --without-minuit2 --with-boost=$BOOST_DIR LDFLAGS="-L$GSL_DIR/lib -L$BOOST_DIR/lib" CPPFLAGS="-I$GSL_DIR/include" CXX=CC --disable-shared
== Repository Management
This package is maintained with git. Tagged exports to svn are currently done using:
git tag -s -m '...' vXX
git archive --format=tar --prefix=likely-XX/ vXX | gzip > /tmp/likely-XX.tar.gz
cd ...
tar -zxf /tmp/likely-XX.tar.gz
svn commit
svn tag