/test/language/gc/ISMM98/unused2/test_bench.e
Specman e | 54 lines | 29 code | 4 blank | 21 comment | 0 complexity | 38672be810f6f1eba3f79a3dc6368058 MD5 | raw file
1-- This file is part of SmartEiffel The GNU Eiffel Compiler Tools and Libraries. 2-- See the Copyright notice at the end of this file. 3-- 4class TEST_BENCH 5 6create {} 7 make 8 9feature {ANY} --| **** TODO: tuning : INTEGER is 4_000_000; BDW BOUCLE !!! 10 tuning: INTEGER 1_000_000 11 12 make 13 local 14 i, j: INTEGER; link1, link2: LINK[REAL] 15 do 16 from 17 j := 0 18 until 19 j > 50 20 loop 21 link1 := Void 22 link2 := Void 23 from 24 i := 1 25 until 26 i > tuning 27 loop 28 link2 := link1 29 create link1.make(i, link2) 30 i := i + 1 31 end 32 j := j + 1 33 end 34 end 35 36end -- class TEST_BENCH 37-- 38-- ------------------------------------------------------------------------------------------------------------------------------ 39-- Copyright notice below. Please read. 40-- 41-- SmartEiffel is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, 42-- as published by the Free Software Foundation; either version 2, or (at your option) any later version. 43-- SmartEiffel is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY; without even the implied warranty 44-- of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have 45-- received a copy of the GNU General Public License along with SmartEiffel; see the file COPYING. If not, write to the Free 46-- Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. 47-- 48-- Copyright(C) 1994-2002: INRIA - LORIA (INRIA Lorraine) - ESIAL U.H.P. - University of Nancy 1 - FRANCE 49-- Copyright(C) 2003-2006: INRIA - LORIA (INRIA Lorraine) - I.U.T. Charlemagne - University of Nancy 2 - FRANCE 50-- 51-- Authors: Dominique COLNET, Philippe RIBET, Cyril ADRIAN, Vincent CROIZIER, Frederic MERIZEN 52-- 53-- http://SmartEiffel.loria.fr - SmartEiffel@loria.fr 54-- ------------------------------------------------------------------------------------------------------------------------------