Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Analysis.AlgorithmBehavior/qhull-2012.1/src/libqhull/random.h @ 10635

Last change on this file since 10635 was 10207, checked in by ascheibe, 11 years ago

#1886 added a unit test for volume calculation and the qhull library

File size: 969 bytes
Line 
1/*<html><pre>  -<a                             href="qh-geom.htm"
2  >-------------------------------</a><a name="TOP">-</a>
3
4  random.h
5    header file for random routines
6
7   see qh-geom.htm and random.c
8
9   Copyright (c) 1993-2012 The Geometry Center.
10   $Id: //main/2011/qhull/src/libqhull/random.h#3 $$Change: 1464 $
11   $DateTime: 2012/01/25 22:58:41 $$Author: bbarber $
12*/
13
14#ifndef qhDEFrandom
15#define qhDEFrandom 1
16
17#include "libqhull.h"
18
19/*============= prototypes in alphabetical order ======= */
20
21
22int     qh_argv_to_command(int argc, char *argv[], char* command, int max_size);
23int     qh_argv_to_command_size(int argc, char *argv[]);
24int     qh_rand( void);
25void    qh_srand( int seed);
26realT   qh_randomfactor(realT scale, realT offset);
27void    qh_randommatrix(realT *buffer, int dim, realT **row);
28int     qh_strtol(const char *s, char **endp);
29double  qh_strtod(const char *s, char **endp);
30
31#endif /* qhDEFrandom */
32
33
34
Note: See TracBrowser for help on using the repository browser.