/tutorial/backtracking/logigram/constraint.e
Specman e | 29 lines | 6 code | 2 blank | 21 comment | 0 complexity | 518e564882602ad34a889b30738ffbdf MD5 | raw file
1-- See the Copyright notice at the end of this file. 2-- 3deferred class CONSTRAINT 4 -- 5 -- any constraint 6 7feature {ANY} 8 get_items (collector: ITEM_COLLECTOR) is 9 -- collect the items 10 deferred 11 end 12 13end -- class CONSTRAINT 14-- 15-- ------------------------------------------------------------------------------------------------------------------------------ 16-- Copyright notice below. Please read. 17-- 18-- This file is free software, which comes along with SmartEiffel. This software is distributed in the hope that it will be 19-- useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 20-- You can modify it as you want, provided this footer is kept unaltered, and a notification of the changes is added. 21-- You are allowed to redistribute it and sell it, alone or as a part of another product. 22-- 23-- Copyright(C) 1994-2002: INRIA - LORIA (INRIA Lorraine) - ESIAL U.H.P. - University of Nancy 1 - FRANCE 24-- Copyright(C) 2003-2005: INRIA - LORIA (INRIA Lorraine) - I.U.T. Charlemagne - University of Nancy 2 - FRANCE 25-- 26-- Authors: Dominique COLNET, Philippe RIBET, Cyril ADRIAN, Vincent CROIZIER, Frederic MERIZEN 27-- 28-- http://SmartEiffel.loria.fr - SmartEiffel@loria.fr 29-- ------------------------------------------------------------------------------------------------------------------------------