/* The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at: http://www.mozilla.org/MPL/ Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. The Original Code is the contents of this file. The Initial Developer of the Original Code is SICS, Swedish Institute of Computer Science AB (SICS). Portions created by the Initial Developer are Copyright (C) 2007 of the Initial Developer. All Rights Reserved. Contributor(s): _____Mats Carlsson _____Nicolas Beldiceanu Alternatively, if the contents of this file is included as a part of SICStus Prolog distribution by SICS, it may be used under the terms of an appropriate SICStus Prolog License Agreement (the "SICStus Prolog License"), in which case the provisions of the SICStus Prolog License are applicable instead of those above. */ :- multifile ctr_predefined/1, ctr_date/2, ctr_persons/2, ctr_origin/3, ctr_usual_name/2, ctr_synonyms/2, ctr_types/2, ctr_arguments/2, ctr_exchangeable/2, ctr_restrictions/2, ctr_typical/2, ctr_example/2, ctr_draw_example/9, ctr_see_also/2, ctr_key_words/2, ctr_derived_collections/2, ctr_graph/7, ctr_graph/9, ctr_eval/2, ctr_sol/3, ctr_logic/3. ctr_date(clique,['20030820','20040530','20060805']). ctr_origin(clique, '\\cite{Fahle02}', []). ctr_arguments(clique, ['SIZE_CLIQUE'-dvar , 'NODES'-collection(index-int, succ-svar)]). ctr_exchangeable(clique, [items('NODES',all)]). ctr_restrictions(clique, ['SIZE_CLIQUE' >= 0 , 'SIZE_CLIQUE' =< size('NODES'), required('NODES',[index,succ]), 'NODES'^index >= 1 , 'NODES'^index =< size('NODES'), distinct('NODES',index) , 'NODES'^succ >= 1 , 'NODES'^succ =< size('NODES')]). ctr_typical(clique, ['SIZE_CLIQUE' >= 2 , 'SIZE_CLIQUE' < size('NODES'), size('NODES') > 2 ]). ctr_graph(clique, ['NODES'], 2, ['CLIQUE'(=\=)>>collection(nodes1,nodes2)], [in_set(nodes2^index,nodes1^succ)], ['NARC' = 'SIZE_CLIQUE'*'SIZE_CLIQUE'-'SIZE_CLIQUE', 'NVERTEX' = 'SIZE_CLIQUE' ], ['SYMMETRIC']). ctr_example(clique, clique(3, [[index-1, succ-{} ], [index-2, succ-{3,5}], [index-3, succ-{2,5}], [index-4, succ-{} ], [index-5, succ-{2,3}]])). ctr_draw_example(clique, ['NODES'], [[[[index-1, succ-{2,4} ], [index-2, succ-{1,3,5}], [index-3, succ-{2,5} ], [index-4, succ-{1,5} ], [index-5, succ-{2,3,4}]]], [[[index-1, succ-{} ], [index-2, succ-{3,5} ], [index-3, succ-{2,5} ], [index-4, succ-{} ], [index-5, succ-{2,3} ]]]], ['CLIQUE'], [[1-[2,4],2-[1,3,5],3-[2,5],4-[1,5],5-[2,3,4]], [2-[3,5],3-[2,5],5-[2,3]]], [['COLLECTIONS'(['NODES'-[1,2,3,4,5]])], ['NARC','NVERTEX']], '','NARC=6,NVERTEX=3', [2.145,2.145,2.145,1.5]). ctr_see_also(clique, [link('common keyword', link_set_to_booleans, '%k, can be used for channelling', ['constraint involving set variables']), link('used in graph description', in_set, '', [])]). ctr_key_words(clique,['graph constraint' , 'maximum clique' , 'constraint involving set variables', 'symmetric' ]). ctr_persons(clique,['Fahle T.' , 'R\\\'egin J.-C.', 'Bron C.' , 'Kerbosch J.' ]).