derived file
This commit is contained in:
parent
82ad65a344
commit
b0fdea6f34
@ -20,39 +20,39 @@ endif()
|
||||
if(GECODE_FOUND)
|
||||
set(GECODE_LIBRARIES ${GECODE_LIBRARY} ${GECODE_SUPPORT_LIBRARY})
|
||||
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)
|
||||
list(APPEND GECODE_LIBRARIES ${GECODE_FZ_LIBRARY})
|
||||
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)
|
||||
list(APPEND GECODE_LIBRARIES ${GECODE_GIST_LIBRARY})
|
||||
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)
|
||||
list(APPEND GECODE_LIBRARIES ${GECODE_GRAPH_LIBRARY})
|
||||
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)
|
||||
list(APPEND GECODE_LIBRARIES ${GECODE_INT_LIBRARY})
|
||||
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)
|
||||
list(APPEND GECODE_LIBRARIES ${GECODE_FLOAT_LIBRARY})
|
||||
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)
|
||||
list(APPEND GECODE_LIBRARIES ${GECODE_MM_LIBRARY})
|
||||
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)
|
||||
list(APPEND GECODE_LIBRARIES ${GECODE_SCHEDULING_LIBRARY})
|
||||
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)
|
||||
list(APPEND GECODE_LIBRARIES ${GECODE_SEARCH_LIBRARY})
|
||||
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)
|
||||
list(APPEND GECODE_LIBRARIES ${GECODE_SET_LIBRARY})
|
||||
endif()
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -5,20 +5,20 @@
|
||||
// File: $Id$
|
||||
// Date: $Date$
|
||||
// Author: Fred Dushin fadushin@syr.edu
|
||||
//
|
||||
//
|
||||
//
|
||||
// Description:
|
||||
//
|
||||
//
|
||||
//
|
||||
// -------------------------------------------------------------------------
|
||||
// Copyright (c) 1998 Fred Dushin
|
||||
// All rights reserved.
|
||||
//
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library Public License
|
||||
// as published by the Free Software Foundation; either version 2
|
||||
// of the License, or (at your option) any later version.
|
||||
//
|
||||
//
|
||||
// This library is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
@ -32,25 +32,25 @@ package jpl.fli;
|
||||
// StringHolder
|
||||
/**
|
||||
* A StringHolder is merely a Holder class for a String value.
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* Copyright (C) 1998 Fred Dushin
|
||||
*
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library Public License
|
||||
* as published by the Free Software Foundation; either version 2
|
||||
* of the License, or (at your option) any later version.
|
||||
*
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Library Public License for more details.
|
||||
*
|
||||
*
|
||||
* @author Fred Dushin fadushin@syr.edu
|
||||
* @version $Revision$
|
||||
*/
|
||||
// Implementation notes:
|
||||
//
|
||||
// Implementation notes:
|
||||
//
|
||||
//----------------------------------------------------------------------/
|
||||
public class StringHolder
|
||||
{
|
||||
|
@ -476,7 +476,7 @@ qsave_module(Mod, OF) :-
|
||||
fail.
|
||||
qsave_module(_, _).
|
||||
|
||||
/** @pred qsave_module(+ _Module_)
|
||||
/** @pred qsave_module(+ Module x)
|
||||
|
||||
Saves an image of all the information compiled by the systemm on
|
||||
module _F_ to a file _State.qly_ in the current directory.
|
||||
|
Reference in New Issue
Block a user