Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.217.14
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
include /
pgsql /
server /
optimizer /
Delete
Unzip
Name
Size
Permission
Date
Action
clauses.h
2.88
KB
-rw-r--r--
2023-12-20 12:58
cost.h
7.33
KB
-rw-r--r--
2023-12-20 12:58
geqo.h
2.12
KB
-rw-r--r--
2023-12-20 12:58
geqo_copy.h
966
B
-rw-r--r--
2023-12-20 12:58
geqo_gene.h
1.09
KB
-rw-r--r--
2023-12-20 12:58
geqo_misc.h
1.1
KB
-rw-r--r--
2023-12-20 12:58
geqo_mutation.h
959
B
-rw-r--r--
2023-12-20 12:58
geqo_pool.h
1.29
KB
-rw-r--r--
2023-12-20 12:58
geqo_random.h
1.28
KB
-rw-r--r--
2023-12-20 12:58
geqo_recombination.h
2.58
KB
-rw-r--r--
2023-12-20 12:58
geqo_selection.h
1015
B
-rw-r--r--
2023-12-20 12:58
joininfo.h
836
B
-rw-r--r--
2023-12-20 12:58
pathnode.h
5.53
KB
-rw-r--r--
2023-12-20 12:58
paths.h
6.83
KB
-rw-r--r--
2023-12-20 12:58
placeholder.h
1.2
KB
-rw-r--r--
2023-12-20 12:58
plancat.h
1.65
KB
-rw-r--r--
2023-12-20 12:58
planmain.h
5.1
KB
-rw-r--r--
2023-12-20 12:58
planner.h
1.33
KB
-rw-r--r--
2023-12-20 12:58
predtest.h
668
B
-rw-r--r--
2023-12-20 12:58
prep.h
1.73
KB
-rw-r--r--
2023-12-20 12:58
restrictinfo.h
1.71
KB
-rw-r--r--
2023-12-20 12:58
subselect.h
1.38
KB
-rw-r--r--
2023-12-20 12:58
tlist.h
1.69
KB
-rw-r--r--
2023-12-20 12:58
var.h
1.5
KB
-rw-r--r--
2023-12-20 12:58
Save
Rename
/*------------------------------------------------------------------------- * * geqo_random.h * random number generator * * Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/include/optimizer/geqo_random.h * *------------------------------------------------------------------------- */ /* contributed by: =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= * Martin Utesch * Institute of Automatic Control * = = University of Mining and Technology = * utesch@aut.tu-freiberg.de * Freiberg, Germany * =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= */ /* -- parts of this are adapted from D. Whitley's Genitor algorithm -- */ #ifndef GEQO_RANDOM_H #define GEQO_RANDOM_H #include <math.h> #include "optimizer/geqo.h" extern void geqo_set_seed(PlannerInfo *root, double seed); /* geqo_rand returns a random float value between 0 and 1 inclusive */ extern double geqo_rand(PlannerInfo *root); /* geqo_randint returns integer value between lower and upper inclusive */ #define geqo_randint(root, upper, lower) \ ( (int) floor( geqo_rand(root)*(((upper)-(lower))+0.999999) ) + (lower) ) #endif /* GEQO_RANDOM_H */