blob: 1d7a154aff09589f86388c8280d4c8a8bbee1714 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
-- This -*- vhdl -*- file is part of GHDL.
-- IEEE 1076.2 math_real package body.
-- Copyright (C) 2015 Tristan Gingold
--
-- GHDL 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 2, or (at your option) any later
-- version.
--
-- GHDL 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 GCC; see the file COPYING2. If not see
-- <http://www.gnu.org/licenses/>.
package body MATH_REAL is
function SIGN (X : REAL) return REAL is
begin
if X > 0.0 then
return 1.0;
elsif X < 0.0 then
return -1.0;
else
return 0.0;
end if;
end SIGN;
function CEIL (X : REAL) return REAL is
begin
assert false severity failure;
end CEIL;
function FLOOR (X : REAL) return REAL is
begin
assert false severity failure;
end FLOOR;
function ROUND (X : REAL) return REAL is
begin
assert false severity failure;
end ROUND;
function TRUNC (X : REAL) return REAL is
begin
assert false severity failure;
end TRUNC;
procedure UNIFORM (SEED1, SEED2 : inout POSITIVE; X : out REAL)
is
variable z, k : Integer;
begin
k := seed1 / 53668;
seed1 := 40014 * (seed1 - k * 53668) - k * 12211;
if seed1 < 0 then
seed1 := seed1 + 2147483563;
end if;
k := seed2 / 52774;
seed2 := 40692 * (seed2 - k * 52774) - k * 3791;
if seed2 < 0 then
seed2 := seed2 + 2147483399;
end if;
z := seed1 - seed2;
if z < 1 then
z := z + 2147483562;
end if;
x := real (z) * 4.656613e-10;
end UNIFORM;
function SIN (X : REAL) return REAL is
begin
assert false severity failure;
end SIN;
function COS (X : REAL) return REAL is
begin
assert false severity failure;
end COS;
end MATH_REAL;
|