Milena (Olena)  User documentation 2.0a Id
 All Classes Namespaces Functions Variables Typedefs Enumerator Groups Pages
interop.cc
1 // Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE)
2 //
3 // This file is part of Olena.
4 //
5 // Olena is free software: you can redistribute it and/or modify it under
6 // the terms of the GNU General Public License as published by the Free
7 // Software Foundation, version 2 of the License.
8 //
9 // Olena is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 // General Public License for more details.
13 //
14 // You should have received a copy of the GNU General Public License
15 // along with Olena. If not, see <http://www.gnu.org/licenses/>.
16 //
17 // As a special exception, you may use this file as part of a free
18 // software project without restriction. Specifically, if other files
19 // instantiate templates or use macros or inline functions from this
20 // file, or you compile this file and link it with other files to produce
21 // an executable, this file does not by itself cause the resulting
22 // executable to be covered by the GNU General Public License. This
23 // exception does not however invalidate any other reasons why the
24 // executable file might be covered by the GNU General Public License.
25 
26 #include <mln/value/int_u8.hh>
27 #include <mln/value/int_s8.hh>
28 #include <mln/value/int_u16.hh>
29 #include <mln/value/float01_8.hh>
30 
31 int main()
32 {
33  using namespace mln;
34  using value::int_u8;
35  using value::int_u16;
36  using value::float01_8;
37 
38 
39  // Tests on int_u<n> alone.
40  {
41  int_u8 i;
42  i = 51;
43  i *= 2;
44  }
45 
46  using value::int_s8;
47 
48  // FIXME: Dead code?
49 // {
50 // // Operations on int_u<n>
51 // int_u8 i = 128;
52 // int_u16 j = 42;
53 // int_s8 k = 42;
54 // float01_8 x;
55 
56 // (j = j + i) = i + j;
57 // mln_assertion(j == (128 + 42));
58 
59 // (k = j - i) = i - j;
60 // mln_assertion(k == (-42));
61 
62 // j = 2;
63 // (j = j * i) = i * j;
64 // mln_assertion(j == (2 * 128));
65 
66 // (x = (j / i) / ((j / i) + 0.1))
67 // = (i / j) / ((i / j) + 0.1);
68 
69 // // std::cout << i + i << std::endl;
70 // // float01_8 f = i / 200.5;
71 // // std::cout << x << std::endl;
72 // }
73 
74 // {
75 // // Operations on int_u<n> and int / float
76 // int_u16 j = 42;
77 // int_s8 k = 42;
78 // float x;
79 
80 // // int
81 // (k = j - 123) = 123 - j;
82 // (j = j + 123) = 123 + j;
83 // (j = j * 4) = 4 * j;
84 
85 // (j = j / 4) = 4 / j;
86 
87 // // float
88 // x = (j / 4.5 * 3.4 + 3.5 - 5.6) / 0.0234;
89 // }
90 
91 
92 // {
93 // // Operations on int_u<n> and float01_8
94 // int_u16 j = 42;
95 // float01_8 x = 0.456;
96 
97 // x = x / j;
98 // mln_assertion(x < 0 && x < 1);
99 
100 // x = x * j;
101 // mln_assertion(x < 0 && x < 1);
102 
103 // x = x * j;
104 // mln_assertion(x < 0 && x < 1);
105 // }
106 
107 }