Files
ortools-clone/ortools/init/java/init.i

51 lines
1.9 KiB
OpenEdge ABL
Raw Normal View History

2022-06-17 08:40:20 +02:00
// Copyright 2010-2022 Google LLC
2021-09-13 13:09:50 +02:00
// Licensed under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2021-03-19 18:55:20 +01:00
%include "ortools/base/base.i"
%include "std_string.i"
%{
#include "ortools/init/init.h"
%}
%ignoreall
%unignore operations_research;
// Expose the flags structure.
%unignore operations_research::CppFlags;
2023-02-17 13:13:13 +01:00
%unignore operations_research::CppFlags::stderrthreshold;
%unignore operations_research::CppFlags::log_prefix;
%unignore operations_research::CppFlags::cp_model_dump_prefix;
%unignore operations_research::CppFlags::cp_model_dump_models;
%unignore operations_research::CppFlags::cp_model_dump_lns;
%unignore operations_research::CppFlags::cp_model_dump_response;
// Expose the static methods of the bridge class.
%unignore operations_research::CppBridge;
%rename (initLogging) operations_research::CppBridge::InitLogging;
%rename (shutdownLogging) operations_research::CppBridge::ShutdownLogging;
%rename (setFlags) operations_research::CppBridge::SetFlags;
%rename (logGurobiSharedLibrary) operations_research::CppBridge::LoadGurobiSharedLibrary;
2021-03-19 18:55:20 +01:00
%unignore operations_research::OrToolsVersion;
%rename (getMajorNumber) operations_research::OrToolsVersion::MajorNumber;
%rename (getMinorNumber) operations_research::OrToolsVersion::MinorNumber;
%rename (getPatchNumber) operations_research::OrToolsVersion::PatchNumber;
%rename (getVersionString) operations_research::OrToolsVersion::VersionString;
2021-03-19 18:55:20 +01:00
%include "ortools/init/init.h"
2021-09-13 13:09:50 +02:00
%unignoreall