PPL Configured Java Language Interface  1.2
Parma_Polyhedra_Library.java
Go to the documentation of this file.
1 /* Parma_Polyhedra_Library Java class declaration and implementation.
2  Copyright (C) 2001-2010 Roberto Bagnara <bagnara@cs.unipr.it>
3  Copyright (C) 2010-2016 BUGSENG srl (http://bugseng.com)
4 
5 This file is part of the Parma Polyhedra Library (PPL).
6 
7 The PPL is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 3 of the License, or (at your
10 option) any later version.
11 
12 The PPL is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16 
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software Foundation,
19 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1307, USA.
20 
21 For the most up-to-date information see the Parma Polyhedra Library
22 site: http://bugseng.com/products/ppl/ . */
23  /* \mainpage */
149 
156 package parma_polyhedra_library;
157 
159 
161 
163 
164 
171  public static native void initialize_library();
172 
181  public static native void finalize_library();
182 
184 
186 
187 
189  public static native int version_major();
190 
192  public static native int version_minor();
193 
195  public static native int version_revision();
196 
198  public static native int version_beta();
199 
201  public static native String version();
202 
204 
210  public static native String banner();
211 
213 
215 
216 
225  public static native void set_rounding_for_PPL();
226 
235  public static native void restore_pre_PPL_rounding();
236 
238  public static native int irrational_precision();
239 
241 
248  public static native void set_irrational_precision(int p);
249 
251 
253 
254 
271  public static native void set_timeout(int csecs);
272 
276  public static native void reset_timeout();
277 
317  public static native void set_deterministic_timeout(int unscaled_weight,
318  int scale);
319 
324  public static native void reset_deterministic_timeout();
325 
327 }
static native void set_timeout(int csecs)
Sets the timeout for computations whose completion could require an exponential amount of time...
static native int version_revision()
Returns the revision number of the PPL version.
static native void reset_timeout()
Resets the timeout time so that the computation is not interrupted.
static native void reset_deterministic_timeout()
Resets the deterministic timeout so that the computation is not interrupted.
static native void initialize_library()
Initializes the Parma Polyhedra Library.
static native int irrational_precision()
Returns the precision parameter for irrational calculations.
static native void set_deterministic_timeout(int unscaled_weight, int scale)
Sets a threshold for computations whose completion could require an exponential amount of time...
static native void set_rounding_for_PPL()
Sets the FPU rounding mode so that the PPL abstractions based on floating point numbers work correctl...
static native void restore_pre_PPL_rounding()
Sets the FPU rounding mode as it was before initialization of the PPL.
static native String banner()
Returns a string containing the PPL banner.
static native int version_beta()
Returns the beta number of the PPL version.
static native int version_minor()
Returns the minor number of the PPL version.
static native String version()
Returns a string containing the PPL version.
static native void finalize_library()
Finalizes the Parma Polyhedra Library.
static native int version_major()
Returns the major number of the PPL version.
static native void set_irrational_precision(int p)
Sets the precision parameter used for irrational calculations.