Changeset 840b859 in sasmodels


Ignore:
Timestamp:
Feb 5, 2016 1:57:03 PM (8 years ago)
Author:
Paul Kienzle <pkienzle@…>
Branches:
master, core_shell_microgels, costrafo411, magnetic_model, release_v0.94, release_v0.95, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
Children:
d5e650d
Parents:
29f27df
Message:

add cephes copyright notice to expm1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasmodels/kernel_template.c

    r29f27df r840b859  
    2525             #define NAN (std::numeric_limits<double>::quiet_NaN()) // non-signalling NaN 
    2626             static double cephes_expm1(double x) { 
     27                 // Adapted from the cephes math library. 
     28                 // Copyright 1984 - 1992 by Stephen L. Moshier 
    2729                 if (x != x || x == 0.0) { 
    2830                     return x; // NaN and +/- 0 
Note: See TracChangeset for help on using the changeset viewer.