derived file

This commit is contained in:
Vitor Santos Costa 2016-12-10 03:11:28 -06:00
parent 82ad65a344
commit b0fdea6f34
4 changed files with 21 additions and 2450 deletions

View File

@ -20,39 +20,39 @@ endif()
if(GECODE_FOUND) if(GECODE_FOUND)
set(GECODE_LIBRARIES ${GECODE_LIBRARY} ${GECODE_SUPPORT_LIBRARY}) set(GECODE_LIBRARIES ${GECODE_LIBRARY} ${GECODE_SUPPORT_LIBRARY})
set(GECODE_INCLUDE_DIRS ${GECODE_INCLUDE_DIR}) set(GECODE_INCLUDE_DIRS ${GECODE_INCLUDE_DIR})
find_library(GECODE_DRIVER_LIBRARY gecodedriverl PATHS ${CMAKE_INSTALL_PREFIX}/lib) find_library(GECODE_DRIVER_LIBRARY gecodedriver PATHS ${CMAKE_INSTALL_PREFIX}/lib)
if(GECODE_FZ_LIBRARY) if(GECODE_FZ_LIBRARY)
list(APPEND GECODE_LIBRARIES ${GECODE_FZ_LIBRARY}) list(APPEND GECODE_LIBRARIES ${GECODE_FZ_LIBRARY})
endif() endif()
find_library(GECODE_GIST_LIBRARY gecodegistl PATHS ${CMAKE_INSTALL_PREFIX}/lib) find_library(GECODE_GIST_LIBRARY gecodegist PATHS ${CMAKE_INSTALL_PREFIX}/lib)
if(GECODE_GIST_LIBRARY) if(GECODE_GIST_LIBRARY)
list(APPEND GECODE_LIBRARIES ${GECODE_GIST_LIBRARY}) list(APPEND GECODE_LIBRARIES ${GECODE_GIST_LIBRARY})
endif() endif()
find_library(GECODE_GRAPH_LIBRARY gecodegraphl PATHS ${CMAKE_INSTALL_PREFIX}/lib) find_library(GECODE_GRAPH_LIBRARY gecodegraph PATHS ${CMAKE_INSTALL_PREFIX}/lib)
if(GECODE_GRAPH_LIBRARY) if(GECODE_GRAPH_LIBRARY)
list(APPEND GECODE_LIBRARIES ${GECODE_GRAPH_LIBRARY}) list(APPEND GECODE_LIBRARIES ${GECODE_GRAPH_LIBRARY})
endif() endif()
find_library(GECODE_INT_LIBRARY gecodeintl PATHS ${CMAKE_INSTALL_PREFIX}/lib) find_library(GECODE_INT_LIBRARY gecodeint PATHS ${CMAKE_INSTALL_PREFIX}/lib)
if(GECODE_INT_LIBRARY) if(GECODE_INT_LIBRARY)
list(APPEND GECODE_LIBRARIES ${GECODE_INT_LIBRARY}) list(APPEND GECODE_LIBRARIES ${GECODE_INT_LIBRARY})
endif() endif()
find_library(GECODE_FLOAT_LIBRARY gecodefloatl PATHS ${CMAKE_INSTALL_PREFIX}/lib) find_library(GECODE_FLOAT_LIBRARY gecodefloat PATHS ${CMAKE_INSTALL_PREFIX}/lib)
if(GECODE_FLOAT_LIBRARY) if(GECODE_FLOAT_LIBRARY)
list(APPEND GECODE_LIBRARIES ${GECODE_FLOAT_LIBRARY}) list(APPEND GECODE_LIBRARIES ${GECODE_FLOAT_LIBRARY})
endif() endif()
find_library(GECODE_MM_LIBRARY gecodeminimodell PATHS ${CMAKE_INSTALL_PREFIX}/lib) find_library(GECODE_MM_LIBRARY gecodeminimodel PATHS ${CMAKE_INSTALL_PREFIX}/lib)
if(GECODE_MM_LIBRARY) if(GECODE_MM_LIBRARY)
list(APPEND GECODE_LIBRARIES ${GECODE_MM_LIBRARY}) list(APPEND GECODE_LIBRARIES ${GECODE_MM_LIBRARY})
endif() endif()
find_library(GECODE_SCHEDULING_LIBRARY gecodeschedulingl PATHS ${CMAKE_INSTALL_PREFIX}/lib) find_library(GECODE_SCHEDULING_LIBRARY gecodescheduling PATHS ${CMAKE_INSTALL_PREFIX}/lib)
if(GECODE_SCHEDULING_LIBRARY) if(GECODE_SCHEDULING_LIBRARY)
list(APPEND GECODE_LIBRARIES ${GECODE_SCHEDULING_LIBRARY}) list(APPEND GECODE_LIBRARIES ${GECODE_SCHEDULING_LIBRARY})
endif() endif()
find_library(GECODE_SEARCH_LIBRARY gecodesearchl PATHS ${CMAKE_INSTALL_PREFIX}/lib) find_library(GECODE_SEARCH_LIBRARY gecodesearch PATHS ${CMAKE_INSTALL_PREFIX}/lib)
if(GECODE_SEARCH_LIBRARY) if(GECODE_SEARCH_LIBRARY)
list(APPEND GECODE_LIBRARIES ${GECODE_SEARCH_LIBRARY}) list(APPEND GECODE_LIBRARIES ${GECODE_SEARCH_LIBRARY})
endif() endif()
find_library(GECODE_SET_LIBRARY gecodesetl PATHS ${CMAKE_INSTALL_PREFIX}/lib) find_library(GECODE_SET_LIBRARY gecodeset PATHS ${CMAKE_INSTALL_PREFIX}/lib)
if(GECODE_SET_LIBRARY) if(GECODE_SET_LIBRARY)
list(APPEND GECODE_LIBRARIES ${GECODE_SET_LIBRARY}) list(APPEND GECODE_LIBRARIES ${GECODE_SET_LIBRARY})
endif() endif()

File diff suppressed because it is too large Load Diff

View File

@ -5,20 +5,20 @@
// File: $Id$ // File: $Id$
// Date: $Date$ // Date: $Date$
// Author: Fred Dushin fadushin@syr.edu // Author: Fred Dushin fadushin@syr.edu
// //
// //
// Description: // Description:
// //
// //
// ------------------------------------------------------------------------- // -------------------------------------------------------------------------
// Copyright (c) 1998 Fred Dushin // Copyright (c) 1998 Fred Dushin
// All rights reserved. // All rights reserved.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library Public License // modify it under the terms of the GNU Library Public License
// as published by the Free Software Foundation; either version 2 // as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version. // of the License, or (at your option) any later version.
// //
// This library is distributed in the hope that it will be useful, // This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
@ -32,25 +32,25 @@ package jpl.fli;
// StringHolder // StringHolder
/** /**
* A StringHolder is merely a Holder class for a String value. * A StringHolder is merely a Holder class for a String value.
* *
* *
* Copyright (C) 1998 Fred Dushin * Copyright (C) 1998 Fred Dushin
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library Public License * modify it under the terms of the GNU Library Public License
* as published by the Free Software Foundation; either version 2 * as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version. * of the License, or (at your option) any later version.
* *
* This library is distributed in the hope that it will be useful, * This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library Public License for more details. * GNU Library Public License for more details.
* *
* @author Fred Dushin fadushin@syr.edu * @author Fred Dushin fadushin@syr.edu
* @version $Revision$ * @version $Revision$
*/ */
// Implementation notes: // Implementation notes:
// //
//----------------------------------------------------------------------/ //----------------------------------------------------------------------/
public class StringHolder public class StringHolder
{ {

View File

@ -476,7 +476,7 @@ qsave_module(Mod, OF) :-
fail. fail.
qsave_module(_, _). qsave_module(_, _).
/** @pred qsave_module(+ _Module_) /** @pred qsave_module(+ Module x)
Saves an image of all the information compiled by the systemm on Saves an image of all the information compiled by the systemm on
module _F_ to a file _State.qly_ in the current directory. module _F_ to a file _State.qly_ in the current directory.