Skip to content

ampl/gsl

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
bst
July 26, 2021 23:42
July 26, 2021 23:42
cdf
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
dht
July 26, 2021 23:42
July 26, 2021 23:42
doc
October 14, 2021 19:22
July 26, 2021 23:42
err
July 26, 2021 23:42
fft
July 26, 2021 23:42
July 26, 2021 23:42
fit
July 26, 2021 23:42
gsl
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
September 3, 2021 10:31
September 27, 2022 19:22
min
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
rng
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
sum
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
September 27, 2022 19:22
July 26, 2021 23:42
September 28, 2022 13:53
July 26, 2021 23:42
November 16, 2015 12:54
March 27, 2023 10:52
August 31, 2012 16:33
September 12, 2013 18:46
August 18, 2017 17:43
July 26, 2021 23:42
July 26, 2021 23:42
July 26, 2021 23:42
December 20, 2021 12:59
March 31, 2020 16:52
November 16, 2015 12:54
July 26, 2021 23:42
November 16, 2015 12:54
August 31, 2012 16:33
July 26, 2021 23:42
November 16, 2015 12:54
July 26, 2021 23:42
November 16, 2015 12:54
July 26, 2021 23:42
July 26, 2021 23:42
November 16, 2015 12:54
August 31, 2012 16:33
December 30, 2016 15:47
December 30, 2016 15:47
December 30, 2016 15:47
August 31, 2012 16:33
August 31, 2012 16:33
August 31, 2012 16:33
August 31, 2012 16:33
July 26, 2021 23:42
August 31, 2012 16:33
August 31, 2012 16:33
August 31, 2012 16:33
August 31, 2012 16:33
August 31, 2012 16:33
August 31, 2012 16:33
August 31, 2012 16:33
August 31, 2012 16:33
July 26, 2021 23:42
August 31, 2012 16:33
September 12, 2013 18:46
July 26, 2021 23:42
September 12, 2013 18:46
September 12, 2013 18:46
September 12, 2013 18:46
August 31, 2012 16:33
August 31, 2012 16:33
September 12, 2013 18:46
September 12, 2013 18:46
May 14, 2019 13:40
May 14, 2019 13:40
August 31, 2012 16:33

GSL - GNU Scientific Library

This is GSL, the GNU Scientific Library, a collection of numerical routines for scientific computing.

GSL is free software, you can redistribute it and/or modify it under the terms of the GNU General Public License.

The GNU General Public License does not permit this software to be redistributed in proprietary programs.

This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

About this repository

This repository contains a copy of the latest stable version of GSL, with two main additions:

CMake build instructions

Build with AMPL bindings

To build the AMPL bindings:

  1. Make sure that the ASL submodule is initialized (in /ampl/thirdparty/asl).

  2. Create a build directory and move there:

    mkdir build
    cd build
    
  3. Initialize the build files with your desired generator, for example:

    cmake .. -G"Unix Makefiles"
    
  4. Build the resulting build files accordingly, for example:

    make .
    

Build without AMPL bindings

If building GSL without the AMPL bindings:

  1. Create a build directory and move there:

    mkdir build
    cd build
    
  2. Initialize the build files with your desired generator, defining the variable ```NO_AMPL_BINDINGS````

    cmake .. -G"Unix Makefiles" -DNO_AMPL_BINDINGS=1
    
  3. Build the resulting build files accordingly, for example:

    make .
    

Other build parameters

  1. Defining GSL_DISABLE_TESTS skips the test generation, for example:

    cmake .. -DGSL_DISABLE_TESTS=1
    
  2. There is experimental support to build only a subset of the GSL library; note that this is only supported when not building the AMPL bindings. To generate only some libraries of the GSL, define BUILDLIBS when calling cmake as a comma separated list of GSL directories. An example follows:

    cmake .. -DBUILDLIBS=ode-initval2,linalg -DNO_AMPL_BINDINGS=1
    

    All the dependencies are handled automatically; please note that the tests often have additional dependencies therefore, to fully benefit from this facility, disable them. For example:

    cmake .. -DBUILDLIBS=ode-initval2,linalg -DNO_AMPL_BINDINGS=1 -DGSL_DISABLE_TESTS=1
    
  3. Turn off building of documentation via:

    cmake .. -DDOCUMENTATION=OFF
    

Availability

The current stable version of GSL is always available from ftp.gnu.org in the directory /pub/gnu/gsl.

A list of mirror sites can be found at http://www.gnu.org/order/ftp.html

Installation

GSL follows the standard GNU installation procedure. Please consult the INSTALL file in this distribution for more detailed instructions.

For information about specific platforms and compilers see the "Compilation Notes" section in the INSTALL file.

More information about GSL

The project homepage is http://www.gnu.org/software/gsl/

See the NEWS file for recent changes to the library.

The GSL Manual has been published and can be ordered from most bookstores. The publication details are,

GNU Scientific Library Reference Manual - Revised Second Edition, M. Galassi et al, ISBN 0954161734 (620 pages, paperback).

The money raised from sales of the manual helps support the development of GSL.

A Japanese translation of the reference manual is available from the GSL website above (thanks to Daisuke TOMINAGA).

Reporting Bugs

A list of known bugs can be found in the BUGS file. Details of compilation problems can be found in the INSTALL file.

If you find a bug which is not listed in these files please report it to bug-gsl@gnu.org.

All bug reports should include:

   The version number of GSL, and where you obtained it.
   The hardware and operating system
   The compiler used, including version number and compilation options
   A description of the bug behaviour
   A short program which reproducibly exercises the bug

It is useful if you can check whether the same problem occurs when the library is compiled without optimization. Thank you.

Any errors or omissions in the manual can also be reported to the same address.

Contributing to GSL

If you are interested in participating in GSL development, please see the webpage at http://www.gnu.org/software/gsl/