[BACK]Return to t-coerce.c CVS log [TXT][DIR] Up to [local] / OpenXM / src / hgm / gsl-t-1 / src

File: [local] / OpenXM / src / hgm / gsl-t-1 / src / t-coerce.c (download)

Revision 1.1, Thu Feb 7 07:38:23 2013 UTC (11 years, 4 months ago) by takayama
Branch: MAIN
CVS Tags: RELEASE_1_3_1_13b, HEAD

The initial version of the standalone package hgm
and the R-package hgm.
The hgm is a package for the holonomic gradient method.
The design outline will be posted at http://fe.math.kobe-u.ac.jp/Movies/oxvh.

/* sys/coerce.c
 * 
 * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough
 * 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or (at
 * your option) any later version.
 * 
 * This program 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.  See the GNU
 * General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 */

#include "config.h"
#include <math.h>
#include "t-gsl_sys.h"

double 
gsl_coerce_double (const double x)
{
  volatile double y;
  y = x;
  return y;
}