# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- # # This file is part of the LibreOffice project. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # $(eval $(call gb_StaticLibrary_StaticLibrary,graphite)) $(eval $(call gb_StaticLibrary_use_unpacked,graphite,graphite)) $(eval $(call gb_StaticLibrary_set_warnings_disabled,graphite)) $(eval $(call gb_StaticLibrary_set_include,graphite,\ -I$(gb_UnpackedTarball_workdir)/graphite/include \ -I$(gb_UnpackedTarball_workdir)/graphite/src \ $$(INCLUDE) \ )) $(eval $(call gb_StaticLibrary_add_defs,graphite,\ -DGRAPHITE2_NTRACING \ -DGRAPHITE2_STATIC \ )) ifeq ($(COM),GCC) ifneq ($(COM_IS_CLANG),TRUE) $(eval $(call gb_StaticLibrary_add_cxxflags,graphite,\ -fpermissive \ )) endif endif ifeq ($(OS),ANDROID) # Force optimizations on Android, because otherwise Pass.cpp triggers an # infinite loop in clang, at least in this version: # Android (5058415 based on r339409) clang version 8.0.2 (https://android.googlesource.com/toolchain/clang 40173bab62ec746213857d083c0e8b0abb568790) (https://android.googlesource.com/toolchain/llvm 7a6618d69e7e8111e1d49dc9e7813767c5ca756a) (based on LLVM 8.0.2svn) $(eval $(call gb_StaticLibrary_add_cxxflags,graphite,\ -Os \ )) endif $(eval $(call gb_StaticLibrary_set_generated_cxx_suffix,graphite,cpp)) $(eval $(call gb_StaticLibrary_add_generated_exception_objects,graphite,\ UnpackedTarball/graphite/src/$(if $(filter GCC,$(COM)),direct,call)_machine \ UnpackedTarball/graphite/src/gr_char_info \ UnpackedTarball/graphite/src/gr_face \ UnpackedTarball/graphite/src/gr_features \ UnpackedTarball/graphite/src/gr_font \ UnpackedTarball/graphite/src/gr_logging \ UnpackedTarball/graphite/src/gr_segment \ UnpackedTarball/graphite/src/gr_slot \ UnpackedTarball/graphite/src/json \ UnpackedTarball/graphite/src/CmapCache \ UnpackedTarball/graphite/src/Code \ UnpackedTarball/graphite/src/Collider \ UnpackedTarball/graphite/src/Decompressor \ UnpackedTarball/graphite/src/Face \ UnpackedTarball/graphite/src/FeatureMap \ UnpackedTarball/graphite/src/FileFace \ UnpackedTarball/graphite/src/Font \ UnpackedTarball/graphite/src/GlyphCache \ UnpackedTarball/graphite/src/GlyphFace \ UnpackedTarball/graphite/src/Intervals \ UnpackedTarball/graphite/src/Justifier \ UnpackedTarball/graphite/src/NameTable \ UnpackedTarball/graphite/src/Pass \ UnpackedTarball/graphite/src/Position \ UnpackedTarball/graphite/src/Segment \ UnpackedTarball/graphite/src/Silf \ UnpackedTarball/graphite/src/Slot \ UnpackedTarball/graphite/src/Sparse \ UnpackedTarball/graphite/src/TtfUtil \ UnpackedTarball/graphite/src/UtfCodec \ )) # vim: set noet sw=4 ts=4: ='distro/collabora/co-24.04.11'>distro/collabora/co-24.04.11 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/nlpsolver
AgeCommit message (Expand)Author
2022-12-19Fix title for nlpsolver/README.mdHossein
2022-07-05Related tdf#137145 tdf#137569 Capitalization + punctuation fixesAdolfo Jayme Barrientos
2021-08-06cid#1489772 UR: Uninitialized read of field in constructorCaolán McNamara
2021-08-02The null pointer bug should be fixed now.Todor Balabanov
2021-07-19AbsGTBehavior should implement ILibEngineJulien Nabet
2021-07-18nlpsolver: DEPSAgent doesn't implement ILibEngineJulien Nabet
2021-07-18Revert "Some lower objects coupling."Noel Grandin
2021-07-17Some lower objects coupling.Todor Balabanov
2021-07-13Object initialization is done via a constructor with parameters.Todor Balabanov
2021-07-12cid#1487032 NP: Null pointer dereferenceCaolán McNamara
2021-07-08Polymorphism is a better approach when there are chains of inheritance.Todor Balabanov
2021-06-21Global optimization metaheuristics sometimes are sensitive to the quality of ...Todor Balabanov
2021-06-20It is a good practice single source of random numbers to be used.Todor Balabanov
2021-06-17A separate function for getting a random search point is a little bit clearer.Todor Balabanov
2021-06-15Fewer array reference calls make the code more readable and more efficient.Todor Balabanov
2021-05-03clean up some Java warningsNoel Grandin
2021-04-07Updated README.md files to represent current code / use Markdown formatHossein
2021-03-24Using .md extension/Markdown syntax for modules READMEHossein
2020-09-25value and targetValue cannot be null at this pointNoel Grandin
2020-07-28Related tdf#135211: return early if no dataJulien Nabet
2020-07-28Typo: Swam->SwarmJulien Nabet
2020-05-06Move all public Java classes to libreoffice.jarSamuel Mehrbrodt
2020-02-04tdf#117331 Merge jurt and unoil into ridlSamuel Mehrbrodt
2019-09-06Fixing '....'Andrea Gelmini
2019-07-27Fix typosAndrea Gelmini
2019-06-03Checking of min and max factor value was added.Todor Balabanov
2019-06-03Range for DE scaling factor was implemented.Todor Balabanov
2019-05-17Some additional manual formatting.Todor Balabanov
2019-05-13nlpsolver: This is considered internal codeSamuel Mehrbrodt
2019-05-12Formatting - Eclipse IDE Java Conventions with spaces for indentation.Todor Balabanov
2019-05-12Generate behavior code simplification and very small speed-up.Todor Balabanov
2019-05-10Import of each class is better practice than import of entire library.Todor Balabanov
2019-05-01Fisher-Yates shuffling algorithm achieves much better randomization.Todor Balabanov
2019-05-01Random class is better than Math random function.Todor Balabanov
2019-05-01Math pow is too slow in this case.Todor Balabanov