Git Product home page Git Product logo

Comments (17)

Adafede avatar Adafede commented on May 30, 2024 2

I would also confirm that omp.h exists in homebrew's /opt somewhere.

It is located where the CPPFLAGSwere pointing to.

@doublethefish
However, it was not found... so here is what I tried (and got it working πŸ₯³ : Adafede@b626abf)

I'll look for a more portable solution and let you know

from tmap.

doublethefish avatar doublethefish commented on May 30, 2024 1

I have a branch building it on m1 via pip. README.md explains how to install.

You will need to install libomp from homebrew: brew install libomp first, I've not added that bit to the instructions yet.

from tmap.

doublethefish avatar doublethefish commented on May 30, 2024 1

from tmap.

Adafede avatar Adafede commented on May 30, 2024 1

Finally, if anyone wants to help me get the github actions uploading the python wheels to pypi, that would solve everyone's problems, including mine.

Have you gone through https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries and https://github.com/pypa/gh-action-pypi-publish?

from tmap.

tentrillion avatar tentrillion commented on May 30, 2024 1

Thank you @Adafede for this! Finally after a few hours of trying I could get tmap installed. Eager to start experimenting with it.

I know everyone's system is different, but in case it's useful, here is what I, a conda/mamba devotee with an M1 Mac did to get the install to work.

  1. brew install libomp. Not sure if this was required or not, the export stuff below may have been the real issue.
  2. brew install cmake.
  3. export CXXFLAGS="-I/opt/homebrew/opt/libomp/include"
  4. python3 -m pip install --no-use-pep517 "git+https://[email protected]/doublethefish/tmap.git@development". The --no-use-pep517 flag seemed to solve some issue with an author being 'Daniel Probst' instead of dynamic, possibly related discussion here.
  5. pip install annoy. annoy doesn't seem available in conda-forge.
  6. conda installation of various dependencies like scipy, matplotlib, etc.

from tmap.

Pa1arax avatar Pa1arax commented on May 30, 2024

This worked, thank you

from tmap.

doublethefish avatar doublethefish commented on May 30, 2024

If you look at the actions on the latest development head, in that repo, there are some m1/arm64 wheels built. Those work fine too and install a tad quicker.

from tmap.

meddwl avatar meddwl commented on May 30, 2024

Unfortunately, I could not manage to install tmap on my machine.

I tried to install tmap into my miniforge3 environment. I did all steps as you recommended: I installed libomp using brew, then ran next command python3 -m pip install "git+https://[email protected]/doublethefish/tmap.git@development" and I got next mistake.

note: This error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for tmap-viz
Failed to build tmap-viz
ERROR: Could not build wheels for tmap-viz, which is required to install pyproject.toml-based projects

Who has a successful experience installing tmap on the m1 chip, could you share how you did it?

from tmap.

doublethefish avatar doublethefish commented on May 30, 2024

@meddwl was that your full log output?

from tmap.

meddwl avatar meddwl commented on May 30, 2024

@meddwl was that your full log output?

(tmap) meddwl@meddwl ~ % python3 -m pip install "git+https://[email protected]/doublethefish/tmap.git@development"
Collecting git+https://@github.com/doublethefish/tmap.git@development
Cloning https://
@github.com/doublethefish/tmap.git (to revision development) to /private/var/folders/58/6gqg3qf555lfcdvk2vbvf5_r0000gn/T/pip-req-build-c7j86vg5
Running command git clone --filter=blob:none --quiet 'https://@github.com/doublethefish/tmap.git' /private/var/folders/58/6gqg3qf555lfcdvk2vbvf5_r0000gn/T/pip-req-build-c7j86vg5
Running command git checkout -b development --track origin/development
Switched to a new branch 'development'
Branch 'development' set up to track remote branch 'development' from 'origin'.
Resolved https://
@github.com/doublethefish/tmap.git to commit 1e80147
Installing build dependencies ... done
Getting requirements to build wheel ... done
Preparing metadata (pyproject.toml) ... done
Collecting scipy
Using cached scipy-1.9.3-cp310-cp310-macosx_12_0_arm64.whl (28.5 MB)
Collecting annoy~=1.17.0
Using cached annoy-1.17.1-cp310-cp310-macosx_12_0_arm64.whl
Requirement already satisfied: matplotlib in ./miniforge3/envs/tmap/lib/python3.10/site-packages (from tmap-viz==1.0.17) (3.6.2)
Requirement already satisfied: packaging>=20.0 in ./miniforge3/envs/tmap/lib/python3.10/site-packages (from matplotlib->tmap-viz==1.0.17) (22.0)
Requirement already satisfied: python-dateutil>=2.7 in ./miniforge3/envs/tmap/lib/python3.10/site-packages (from matplotlib->tmap-viz==1.0.17) (2.8.2)
Requirement already satisfied: fonttools>=4.22.0 in ./miniforge3/envs/tmap/lib/python3.10/site-packages (from matplotlib->tmap-viz==1.0.17) (4.38.0)
Requirement already satisfied: cycler>=0.10 in ./miniforge3/envs/tmap/lib/python3.10/site-packages (from matplotlib->tmap-viz==1.0.17) (0.11.0)
Requirement already satisfied: numpy>=1.19 in ./miniforge3/envs/tmap/lib/python3.10/site-packages (from matplotlib->tmap-viz==1.0.17) (1.24.0)
Requirement already satisfied: kiwisolver>=1.0.1 in ./miniforge3/envs/tmap/lib/python3.10/site-packages (from matplotlib->tmap-viz==1.0.17) (1.4.4)
Requirement already satisfied: pyparsing>=2.2.1 in ./miniforge3/envs/tmap/lib/python3.10/site-packages (from matplotlib->tmap-viz==1.0.17) (3.0.9)
Requirement already satisfied: pillow>=6.2.0 in ./miniforge3/envs/tmap/lib/python3.10/site-packages (from matplotlib->tmap-viz==1.0.17) (9.2.0)
Requirement already satisfied: contourpy>=1.0.1 in ./miniforge3/envs/tmap/lib/python3.10/site-packages (from matplotlib->tmap-viz==1.0.17) (1.0.6)
Requirement already satisfied: six>=1.5 in ./miniforge3/envs/tmap/lib/python3.10/site-packages (from python-dateutil>=2.7->matplotlib->tmap-viz==1.0.17) (1.16.0)
Building wheels for collected packages: tmap-viz
Building wheel for tmap-viz (pyproject.toml) ... error
error: subprocess-exited-with-error

Γ— Building wheel for tmap-viz (pyproject.toml) did not run successfully.
β”‚ exit code: 1
╰─> [118 lines of output]
/private/var/folders/58/6gqg3qf555lfcdvk2vbvf5_r0000gn/T/pip-build-env-z9yye9cj/overlay/lib/python3.10/site-packages/setuptools/config/_apply_pyprojecttoml.py:103: _WouldIgnoreField: 'authors' defined outside of pyproject.toml would be ignored.
!!

      ##########################################################################
      # configuration would be ignored/result in error due to `pyproject.toml` #
      ##########################################################################

      The following seems to be defined outside of `pyproject.toml`:

      `authors = 'Daniel Probst'`

      According to the spec (see the link below), however, setuptools CANNOT
      consider this value unless 'authors' is listed as `dynamic`.

      https://packaging.python.org/en/latest/specifications/declaring-project-metadata/

      For the time being, `setuptools` will still consider the given value (as a
      **transitional** measure), but please note that future releases of setuptools will
      follow strictly the standard.

      To prevent this warning, you can list 'authors' under `dynamic` or alternatively
      remove the `[project]` table from your file and rely entirely on other means of
      configuration.


  !!

    warnings.warn(msg, _WouldIgnoreField)
  running bdist_wheel
  running build
  running build_py
  creating build
  creating build/lib.macosx-11.0-arm64-cpython-310
  creating build/lib.macosx-11.0-arm64-cpython-310/tmap
  copying src/tmap/embedding.py -> build/lib.macosx-11.0-arm64-cpython-310/tmap
  copying src/tmap/plotting.py -> build/lib.macosx-11.0-arm64-cpython-310/tmap
  copying src/tmap/__init__.py -> build/lib.macosx-11.0-arm64-cpython-310/tmap
  creating build/lib.macosx-11.0-arm64-cpython-310/tmap/core
  copying src/tmap/core/line.py -> build/lib.macosx-11.0-arm64-cpython-310/tmap/core
  copying src/tmap/core/__init__.py -> build/lib.macosx-11.0-arm64-cpython-310/tmap/core
  copying src/tmap/core/tmap_embedding.py -> build/lib.macosx-11.0-arm64-cpython-310/tmap/core
  creating build/lib.macosx-11.0-arm64-cpython-310/tmap/layout_generators
  copying src/tmap/layout_generators/__init__.py -> build/lib.macosx-11.0-arm64-cpython-310/tmap/layout_generators
  copying src/tmap/layout_generators/annoy_layout_generator.py -> build/lib.macosx-11.0-arm64-cpython-310/tmap/layout_generators
  copying src/tmap/layout_generators/base_layout_generator.py -> build/lib.macosx-11.0-arm64-cpython-310/tmap/layout_generators
  copying src/tmap/layout_generators/builtin_layout_generator.py -> build/lib.macosx-11.0-arm64-cpython-310/tmap/layout_generators
  creating build/lib.macosx-11.0-arm64-cpython-310/tmap/helpers
  copying src/tmap/helpers/__init__.py -> build/lib.macosx-11.0-arm64-cpython-310/tmap/helpers
  copying src/tmap/helpers/set_defaults.py -> build/lib.macosx-11.0-arm64-cpython-310/tmap/helpers
  running egg_info
  writing src/tmap_viz.egg-info/PKG-INFO
  writing dependency_links to src/tmap_viz.egg-info/dependency_links.txt
  writing requirements to src/tmap_viz.egg-info/requires.txt
  writing top-level names to src/tmap_viz.egg-info/top_level.txt
  reading manifest file 'src/tmap_viz.egg-info/SOURCES.txt'
  writing manifest file 'src/tmap_viz.egg-info/SOURCES.txt'
  running build_ext
  Traceback (most recent call last):
    File "<string>", line 27, in run
    File "/Users/meddwl/miniforge3/envs/tmap/lib/python3.10/subprocess.py", line 421, in check_output
      return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
    File "/Users/meddwl/miniforge3/envs/tmap/lib/python3.10/subprocess.py", line 503, in run
      with Popen(*popenargs, **kwargs) as process:
    File "/Users/meddwl/miniforge3/envs/tmap/lib/python3.10/subprocess.py", line 971, in __init__
      self._execute_child(args, executable, preexec_fn, close_fds,
    File "/Users/meddwl/miniforge3/envs/tmap/lib/python3.10/subprocess.py", line 1847, in _execute_child
      raise child_exception_type(errno_num, err_msg, err_filename)
  FileNotFoundError: [Errno 2] No such file or directory: 'cmake'

  During handling of the above exception, another exception occurred:

  Traceback (most recent call last):
    File "/Users/meddwl/miniforge3/envs/tmap/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 351, in <module>
      main()
    File "/Users/meddwl/miniforge3/envs/tmap/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 333, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "/Users/meddwl/miniforge3/envs/tmap/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 249, in build_wheel
      return _build_backend().build_wheel(wheel_directory, config_settings,
    File "/private/var/folders/58/6gqg3qf555lfcdvk2vbvf5_r0000gn/T/pip-build-env-z9yye9cj/overlay/lib/python3.10/site-packages/setuptools/build_meta.py", line 413, in build_wheel
      return self._build_with_temp_dir(['bdist_wheel'], '.whl',
    File "/private/var/folders/58/6gqg3qf555lfcdvk2vbvf5_r0000gn/T/pip-build-env-z9yye9cj/overlay/lib/python3.10/site-packages/setuptools/build_meta.py", line 398, in _build_with_temp_dir
      self.run_setup()
    File "/private/var/folders/58/6gqg3qf555lfcdvk2vbvf5_r0000gn/T/pip-build-env-z9yye9cj/overlay/lib/python3.10/site-packages/setuptools/build_meta.py", line 484, in run_setup
      super(_BuildMetaLegacyBackend,
    File "/private/var/folders/58/6gqg3qf555lfcdvk2vbvf5_r0000gn/T/pip-build-env-z9yye9cj/overlay/lib/python3.10/site-packages/setuptools/build_meta.py", line 335, in run_setup
      exec(code, locals())
    File "<string>", line 94, in <module>
    File "/private/var/folders/58/6gqg3qf555lfcdvk2vbvf5_r0000gn/T/pip-build-env-z9yye9cj/overlay/lib/python3.10/site-packages/setuptools/__init__.py", line 87, in setup
      return distutils.core.setup(**attrs)
    File "/private/var/folders/58/6gqg3qf555lfcdvk2vbvf5_r0000gn/T/pip-build-env-z9yye9cj/overlay/lib/python3.10/site-packages/setuptools/_distutils/core.py", line 185, in setup
      return run_commands(dist)
    File "/private/var/folders/58/6gqg3qf555lfcdvk2vbvf5_r0000gn/T/pip-build-env-z9yye9cj/overlay/lib/python3.10/site-packages/setuptools/_distutils/core.py", line 201, in run_commands
      dist.run_commands()
    File "/private/var/folders/58/6gqg3qf555lfcdvk2vbvf5_r0000gn/T/pip-build-env-z9yye9cj/overlay/lib/python3.10/site-packages/setuptools/_distutils/dist.py", line 969, in run_commands
      self.run_command(cmd)
    File "/private/var/folders/58/6gqg3qf555lfcdvk2vbvf5_r0000gn/T/pip-build-env-z9yye9cj/overlay/lib/python3.10/site-packages/setuptools/dist.py", line 1208, in run_command
      super().run_command(command)
    File "/private/var/folders/58/6gqg3qf555lfcdvk2vbvf5_r0000gn/T/pip-build-env-z9yye9cj/overlay/lib/python3.10/site-packages/setuptools/_distutils/dist.py", line 988, in run_command
      cmd_obj.run()
    File "/private/var/folders/58/6gqg3qf555lfcdvk2vbvf5_r0000gn/T/pip-build-env-z9yye9cj/overlay/lib/python3.10/site-packages/wheel/bdist_wheel.py", line 325, in run
      self.run_command("build")
    File "/private/var/folders/58/6gqg3qf555lfcdvk2vbvf5_r0000gn/T/pip-build-env-z9yye9cj/overlay/lib/python3.10/site-packages/setuptools/_distutils/cmd.py", line 318, in run_command
      self.distribution.run_command(command)
    File "/private/var/folders/58/6gqg3qf555lfcdvk2vbvf5_r0000gn/T/pip-build-env-z9yye9cj/overlay/lib/python3.10/site-packages/setuptools/dist.py", line 1208, in run_command
      super().run_command(command)
    File "/private/var/folders/58/6gqg3qf555lfcdvk2vbvf5_r0000gn/T/pip-build-env-z9yye9cj/overlay/lib/python3.10/site-packages/setuptools/_distutils/dist.py", line 988, in run_command
      cmd_obj.run()
    File "/private/var/folders/58/6gqg3qf555lfcdvk2vbvf5_r0000gn/T/pip-build-env-z9yye9cj/overlay/lib/python3.10/site-packages/setuptools/_distutils/command/build.py", line 132, in run
      self.run_command(cmd_name)
    File "/private/var/folders/58/6gqg3qf555lfcdvk2vbvf5_r0000gn/T/pip-build-env-z9yye9cj/overlay/lib/python3.10/site-packages/setuptools/_distutils/cmd.py", line 318, in run_command
      self.distribution.run_command(command)
    File "/private/var/folders/58/6gqg3qf555lfcdvk2vbvf5_r0000gn/T/pip-build-env-z9yye9cj/overlay/lib/python3.10/site-packages/setuptools/dist.py", line 1208, in run_command
      super().run_command(command)
    File "/private/var/folders/58/6gqg3qf555lfcdvk2vbvf5_r0000gn/T/pip-build-env-z9yye9cj/overlay/lib/python3.10/site-packages/setuptools/_distutils/dist.py", line 988, in run_command
      cmd_obj.run()
    File "<string>", line 29, in run
  RuntimeError: CMake must be installed to build the following extensions: _tmap
  [end of output]

note: This error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for tmap-viz
Failed to build tmap-viz
ERROR: Could not build wheels for tmap-viz, which is required to install pyproject.toml-based projects

from tmap.

Adafede avatar Adafede commented on May 30, 2024

Hi, also got trouble:

➜  ~ python3 -m pip install "git+https://[email protected]/doublethefish/tmap.git@development"
Collecting git+https://****@github.com/doublethefish/tmap.git@development
  Cloning https://****@github.com/doublethefish/tmap.git (to revision development) to /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m
  Running command git clone --filter=blob:none --quiet 'https://****@github.com/doublethefish/tmap.git' /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m
  Running command git checkout -b development --track origin/development
  Switched to a new branch 'development'
  branch 'development' set up to track 'origin/development'.
  Resolved https://****@github.com/doublethefish/tmap.git to commit 1e80147451c2a0f5c0deca62a01a33ed636b0dca
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... done
Collecting annoy~=1.17.0
  Downloading annoy-1.17.1.tar.gz (647 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 648.0/648.0 kB 16.2 MB/s eta 0:00:00
  Preparing metadata (setup.py) ... done
Collecting scipy
  Downloading scipy-1.9.3-cp310-cp310-macosx_12_0_arm64.whl (28.5 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 28.5/28.5 MB 50.5 MB/s eta 0:00:00
Collecting matplotlib
  Downloading matplotlib-3.6.2-cp310-cp310-macosx_11_0_arm64.whl (7.2 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.2/7.2 MB 42.7 MB/s eta 0:00:00
Requirement already satisfied: numpy>=1.19 in /opt/homebrew/lib/python3.10/site-packages (from matplotlib->tmap-viz==1.0.17) (1.24.0)
Collecting kiwisolver>=1.0.1
  Downloading kiwisolver-1.4.4-cp310-cp310-macosx_11_0_arm64.whl (63 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 63.2/63.2 kB 8.3 MB/s eta 0:00:00
Collecting fonttools>=4.22.0
  Using cached fonttools-4.38.0-py3-none-any.whl (965 kB)
Collecting python-dateutil>=2.7
  Downloading python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 247.7/247.7 kB 38.8 MB/s eta 0:00:00
Collecting packaging>=20.0
  Using cached packaging-22.0-py3-none-any.whl (42 kB)
Collecting pillow>=6.2.0
  Downloading Pillow-9.3.0-cp310-cp310-macosx_11_0_arm64.whl (2.9 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.9/2.9 MB 40.1 MB/s eta 0:00:00
Collecting pyparsing>=2.2.1
  Using cached pyparsing-3.0.9-py3-none-any.whl (98 kB)
Collecting contourpy>=1.0.1
  Downloading contourpy-1.0.6-cp310-cp310-macosx_11_0_arm64.whl (225 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 225.9/225.9 kB 26.2 MB/s eta 0:00:00
Collecting cycler>=0.10
  Using cached cycler-0.11.0-py3-none-any.whl (6.4 kB)
Requirement already satisfied: six>=1.5 in /opt/homebrew/lib/python3.10/site-packages (from python-dateutil>=2.7->matplotlib->tmap-viz==1.0.17) (1.16.0)
Building wheels for collected packages: tmap-viz, annoy
  Building wheel for tmap-viz (pyproject.toml) ... error
  error: subprocess-exited-with-error
  
  Γ— Building wheel for tmap-viz (pyproject.toml) did not run successfully.
  β”‚ exit code: 1
  ╰─> [1988 lines of output]
      Error in sitecustomize; set PYTHONVERBOSE for traceback:
      AssertionError:
      /opt/homebrew/Cellar/[email protected]/3.10.9/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/setuptools/config/_apply_pyprojecttoml.py:103: _WouldIgnoreField: 'authors' defined outside of `pyproject.toml` would be ignored.
          !!
      
      
          ##########################################################################
          # configuration would be ignored/result in error due to `pyproject.toml` #
          ##########################################################################
      
          The following seems to be defined outside of `pyproject.toml`:
      
          `authors = 'Daniel Probst'`
      
          According to the spec (see the link below), however, setuptools CANNOT
          consider this value unless 'authors' is listed as `dynamic`.
      
          https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
      
          For the time being, `setuptools` will still consider the given value (as a
          **transitional** measure), but please note that future releases of setuptools will
          follow strictly the standard.
      
          To prevent this warning, you can list 'authors' under `dynamic` or alternatively
          remove the `[project]` table from your file and rely entirely on other means of
          configuration.
      
      
      !!
      
        warnings.warn(msg, _WouldIgnoreField)
      running bdist_wheel
      running build
      running build_py
      creating build
      creating build/lib.macosx-12-arm64-cpython-310
      creating build/lib.macosx-12-arm64-cpython-310/tmap
      copying src/tmap/embedding.py -> build/lib.macosx-12-arm64-cpython-310/tmap
      copying src/tmap/plotting.py -> build/lib.macosx-12-arm64-cpython-310/tmap
      copying src/tmap/__init__.py -> build/lib.macosx-12-arm64-cpython-310/tmap
      creating build/lib.macosx-12-arm64-cpython-310/tmap/core
      copying src/tmap/core/line.py -> build/lib.macosx-12-arm64-cpython-310/tmap/core
      copying src/tmap/core/__init__.py -> build/lib.macosx-12-arm64-cpython-310/tmap/core
      copying src/tmap/core/tmap_embedding.py -> build/lib.macosx-12-arm64-cpython-310/tmap/core
      creating build/lib.macosx-12-arm64-cpython-310/tmap/layout_generators
      copying src/tmap/layout_generators/__init__.py -> build/lib.macosx-12-arm64-cpython-310/tmap/layout_generators
      copying src/tmap/layout_generators/annoy_layout_generator.py -> build/lib.macosx-12-arm64-cpython-310/tmap/layout_generators
      copying src/tmap/layout_generators/base_layout_generator.py -> build/lib.macosx-12-arm64-cpython-310/tmap/layout_generators
      copying src/tmap/layout_generators/builtin_layout_generator.py -> build/lib.macosx-12-arm64-cpython-310/tmap/layout_generators
      creating build/lib.macosx-12-arm64-cpython-310/tmap/helpers
      copying src/tmap/helpers/__init__.py -> build/lib.macosx-12-arm64-cpython-310/tmap/helpers
      copying src/tmap/helpers/set_defaults.py -> build/lib.macosx-12-arm64-cpython-310/tmap/helpers
      running egg_info
      writing src/tmap_viz.egg-info/PKG-INFO
      writing dependency_links to src/tmap_viz.egg-info/dependency_links.txt
      writing requirements to src/tmap_viz.egg-info/requires.txt
      writing top-level names to src/tmap_viz.egg-info/top_level.txt
      reading manifest file 'src/tmap_viz.egg-info/SOURCES.txt'
      writing manifest file 'src/tmap_viz.egg-info/SOURCES.txt'
      running build_ext
      -- The C compiler identification is AppleClang 14.0.0.14000029
      -- The CXX compiler identification is AppleClang 14.0.0.14000029
      -- Detecting C compiler ABI info
      -- Detecting C compiler ABI info - done
      -- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc - skipped
      -- Detecting C compile features
      -- Detecting C compile features - done
      -- Detecting CXX compiler ABI info
      -- Detecting CXX compiler ABI info - done
      -- Check for working CXX compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ - skipped
      -- Detecting CXX compile features
      -- Detecting CXX compile features - done
      -- Performing Test has_mallinfo2
      -- Performing Test has_mallinfo2 - Failed
      -- Performing Test has_sse3_pmmintrin
      -- Performing Test has_sse3_pmmintrin - Failed
      -- Performing Test has_sse3_intrin
      -- Performing Test has_sse3_intrin - Failed
      -- SSE3 could not be activated
      -- Performing Test has_linux_cpu_macros
      -- Performing Test has_linux_cpu_macros - Failed
      -- Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE)
      CMake Warning at ogdf-conda/src/cmake/doc.cmake:52 (message):
        Doxygen not found.  Documentation cannot be built.
      Call Stack (most recent call first):
        ogdf-conda/src/CMakeLists.txt:30 (include)
      
      
      -- The default target builds OGDF (and dependencies like COIN).
      --
      -- Other important targets:
      --        tests: build tests
      --     examples: build examples
      --    build-all: build OGDF, tests, examples
      -- Found OpenMP_C: -Wno-unused-command-line-argument
      -- Found OpenMP_CXX: -Wno-unused-command-line-argument
      -- Found OpenMP: TRUE
      -- Performing Test CMAKE_HAVE_LIBC_PTHREAD
      -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
      -- Found Threads: TRUE
      -- pybind11 v2.10.0 dev1
      -- Found PythonInterp: /opt/homebrew/Cellar/[email protected]/3.10.9/bin/python3.10 (found suitable version "3.10.9", minimum required is "3.6")
      -- Found PythonLibs: /opt/homebrew/opt/[email protected]/Frameworks/Python.framework/Versions/3.10/lib/libpython3.10.dylib
      -- Performing Test HAS_FLTO
      -- Performing Test HAS_FLTO - Success
      -- Performing Test HAS_FLTO_THIN
      -- Performing Test HAS_FLTO_THIN - Success
      -- Configuring done
      -- Generating done
      CMake Warning:
        Manually-specified variables were not used by the project:
      
          OpenMP_CXX_FLAG
          OpenMP_C_FLAG
      
      
      -- Build files have been written to: /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/build/temp.macosx-12-arm64-cpython-310
      [  0%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpCholeskyBase.cpp.o
      [  0%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpConstraint.cpp.o
      [  0%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpCholeskyDense.cpp.o
      [  1%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpConstraintQuadratic.cpp.o
      [  1%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpConstraintLinear.cpp.o
      [  1%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpDualRowPivot.cpp.o
      [  1%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpDualRowDantzig.cpp.o
      [  1%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpCholeskyTaucs.cpp.o
      [  1%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpDualRowSteepest.cpp.o
      [  1%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpDummyMatrix.cpp.o
      [  1%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpDynamicExampleMatrix.cpp.o
      [  2%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpDynamicMatrix.cpp.o
      [  2%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpEventHandler.cpp.o
      [  2%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpFactorization.cpp.o
      [  2%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpGubDynamicMatrix.cpp.o
      [  2%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpGubMatrix.cpp.o
      [  3%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpHelperFunctions.cpp.o
      [  3%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpInterior.cpp.o
      [  3%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpLinearObjective.cpp.o
      [  3%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpLsqr.cpp.o
      [  3%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpMatrixBase.cpp.o
      [  3%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpMessage.cpp.o
      [  4%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpModel.cpp.o
      [  4%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpNetworkBasis.cpp.o
      [  4%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpNetworkMatrix.cpp.o
      [  4%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpNode.cpp.o
      [  4%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpNonLinearCost.cpp.o
      [  5%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpObjective.cpp.o
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpModel.cpp:1360:21: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                          sprintf(name, "R%7.7d", iRow);
                          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpModel.cpp:1369:21: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                          sprintf(name, "C%7.7d", iColumn);
                          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpModel.cpp:3303:11: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                sprintf(name, "R%7.7d", iRow);
                ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpModel.cpp:3340:11: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                sprintf(name, "C%7.7d", iColumn);
                ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpModel.cpp:3411:16: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                     sprintf(name, "R%7.7d", iRow);
                     ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpModel.cpp:3434:16: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                     sprintf(name, "C%7.7d", iColumn);
                     ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpModel.cpp:3667:21: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                          sprintf(name, "R%7.7d", iRow);
                          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpModel.cpp:3684:16: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                     sprintf(name, "R%7.7d", iRow);
                     ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpModel.cpp:3707:21: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                          sprintf(name, "C%7.7d", iColumn);
                          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpModel.cpp:3724:16: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                     sprintf(name, "C%7.7d", iColumn);
                     ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpModel.cpp:3927:21: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                          sprintf(temp, "%g", constant);
                          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpModel.cpp:3939:31: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                                    sprintf(temp2, "+%s", coinModel->getColumnName(kColumn));
                                    ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpModel.cpp:3941:31: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                                    sprintf(temp2, "-%s", coinModel->getColumnName(kColumn));
                                    ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpModel.cpp:3943:31: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                                    sprintf(temp2, "+%g*%s", value, coinModel->getColumnName(kColumn));
                                    ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpModel.cpp:3945:31: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                                    sprintf(temp2, "%g*%s", value, coinModel->getColumnName(kColumn));
                                    ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      [  5%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpPackedMatrix.cpp.o
      [  5%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpPdco.cpp.o
      [  5%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpPdcoBase.cpp.o
      [  5%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpPlusMinusOneMatrix.cpp.o
      [  5%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpPredictorCorrector.cpp.o
      [  7%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpPresolve.cpp.o
      [  7%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpPrimalColumnDantzig.cpp.o
      [  7%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpPrimalColumnPivot.cpp.o
      [  7%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpPrimalColumnSteepest.cpp.o
      [  7%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpQuadraticObjective.cpp.o
      [  8%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpSimplex.cpp.o
      [  8%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpSimplexDual.cpp.o
      15 warnings generated.
      [  8%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpSimplexNonlinear.cpp.o
      [  8%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpSimplexOther.cpp.o
      [  8%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpSimplexPrimal.cpp.o
      [  8%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/ClpSolve.cpp.o
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpSimplex.cpp:7359:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(line,"%d unscaled row infeasibilities - summing to %g",
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpSimplex.cpp:7370:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(line,"%d relaxed row infeasibilities - summing to %g",
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpSimplexOther.cpp:1963:4: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                       sprintf(line,"Crossover considerations reduce ending  theta from %g to %g\n",
                       ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpSimplexOther.cpp:2065:9: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                            sprintf(line,"Can not get to theta of %g\n", startingTheta);
                            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpSimplexOther.cpp:2090:6: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
           sprintf(line,"Ending theta %g\n", endingTheta);
           ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpSimplexOther.cpp:2111:5: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
          sprintf(line,"Empty parametrics file %s?",dataFile);
          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpSimplexOther.cpp:2189:5: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
          sprintf(line,"Odd first line %s on file %s?",line,dataFile);
          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpSimplexOther.cpp:2196:5: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
          sprintf(line,"Not enough records on parametrics file %s?",dataFile);
          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpSimplexOther.cpp:2362:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(line,"%d Row fields and %d records", nAcross, nLine);
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpSimplexOther.cpp:2366:2: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
              sprintf(line," ** %d records did not match on name/sequence, first bad %s", nBadName,saveLine);
              ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpSimplexOther.cpp:2377:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(line,"Duplicate or unknown keyword - or name/number fields wrong");
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpSimplexOther.cpp:2386:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(line,"Not enough records on parametrics file %s after COLUMNS?",dataFile);
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpSimplexOther.cpp:2540:2: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
              sprintf(line,"%d Column fields and %d records", nAcross, nLine);
              ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpSimplexOther.cpp:2544:4: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                sprintf(line," ** %d records did not match on name/sequence, first bad %s", nBadName,saveLine);
                ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpSimplexOther.cpp:2555:2: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
              sprintf(line,"Duplicate or unknown keyword - or name/number fields wrong");
              ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpSimplexOther.cpp:3225:6: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                                sprintf(in,"C%7.7d",iSequence);
                                ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpSimplexOther.cpp:3231:6: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                                sprintf(in,"R%7.7d",iSequence);
                                ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpSimplexOther.cpp:3238:6: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                                sprintf(out,"C%7.7d",iSequence);
                                ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpSimplexOther.cpp:3244:6: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                                sprintf(out,"R%7.7d",iSequence);
                                ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpSimplexOther.cpp:4175:5: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
          sprintf(message,"%d gub rows", numberGub);
          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpSimplexOther.cpp:4185:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(message,"Putting back one gub row to make non-empty");
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpSimplexOther.cpp:4400:5: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
          sprintf(message,"** Before adding matrix there are %d rows and %d columns",
          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/Clp/ClpSimplexOther.cpp:4439:5: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
          sprintf(message,
          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      [  9%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/Clp_C_Interface.cpp.o
      [  9%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/IdiSolve.cpp.o
      [  9%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/Idiot.cpp.o
      [  9%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/MyEventHandler.cpp.o
      [  9%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/MyMessageHandler.cpp.o
      [  9%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Clp/unitTest.cpp.o
      21 warnings generated.
      [ 10%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinAlloc.cpp.o
      [ 10%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinBuild.cpp.o
      [ 10%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinDenseFactorization.cpp.o
      [ 10%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinDenseVector.cpp.o
      [ 10%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinError.cpp.o
      [ 11%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinFactorization1.cpp.o
      [ 11%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinFactorization2.cpp.o
      [ 11%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinFactorization3.cpp.o
      [ 11%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinFactorization4.cpp.o
      [ 11%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinFileIO.cpp.o
      [ 11%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinFinite.cpp.o
      [ 12%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinIndexedVector.cpp.o
      2 warnings generated.
      [ 12%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinLpIO.cpp.o
      [ 12%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinMessage.cpp.o
      [ 12%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinMessageHandler.cpp.o
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:324:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(rName, "%s_low", rowNames[i]);
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:328:2: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
              sprintf(printBuffer,"### CoinLpIO::checkRowNames(): ranged constraint %d hasa name %s identical to another constraint name or objective function name.\nUse getPreviousNames() to get the old row names.\nNow using default row names.", i, rName);
              ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:432:5: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
          sprintf(str,"### ERROR: value: %f\n", value);
          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:451:5: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
          sprintf(str,"### ERROR: value: %f\n", value);
          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:470:5: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
          sprintf(str,"### ERROR: value: %d\n", value);
          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:489:5: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
          sprintf(str,"### ERROR: value: %d\n", value);
          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:573:5: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
          sprintf(buff, "cons%d", i);
          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:576:3: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
        sprintf(buff, "obj");
        ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:598:5: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
          sprintf(buff, "x%d", j);
          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:681:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(form, " %%.%df", decimals);
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:697:5: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
          sprintf(str,"### ERROR: unable to open file %s\n", filename);
          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:725:5: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
          sprintf(str,"### ERROR: unable to open file %s\n", filename);
          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:764:8: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
             sprintf(buff, "cons%d", j);
             ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:776:8: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
             sprintf(buff, "x%d", j);
             ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:981:3: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
        sprintf(buff, "aa");
        ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:994:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(str,"### ERROR: Unable to locate objective function\n");
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:1102:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(str,"### ERROR: end of file reached while skipping comment\n");
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:1107:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(str,"### ERROR: error while skipping comment\n");
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:1162:2: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
              sprintf(printBuffer,"### CoinLpIO::is_invalid_name(): Name %s is too long",
              ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:1170:5: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
          sprintf(printBuffer,"### CoinLpIO::is_invalid_name(): Name %s should not start with a number", name);
          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:1178:5: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
          sprintf(printBuffer,"### CoinLpIO::is_invalid_name(): Name %s contains illegal character '%c'", name, name[pos]);
          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:1203:5: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
          sprintf(str,"### ERROR: card_vnames: %d   number of rows: %d\n",
          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:1219:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(printBuffer,"### CoinLpIO::are_invalid_names(): Invalid name: vnames[%d]: %s",
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:1242:5: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
          sprintf(str,"### ERROR: Unable to read objective function\n");
          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:1294:5: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
          sprintf(loc_name, "aa");
          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:1340:3: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
        sprintf(buff, "%s", start_str);
        ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:1446:3: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
        sprintf(start_str, "%s", buff);
        ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:1464:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(str,"### ERROR: Unable to read row monomial\n");
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:1534:5: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
          sprintf(str,"### ERROR: Unable to open file %s for reading\n", filename);
          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:1597:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(str,"### ERROR: Can not locate keyword 'Subject To'\n");
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:1617:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(rname, "cons%d", cnt_row);
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:1696:6: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                  sprintf(str,"### ERROR: Bounds; expect a sense, get: %s\n", buff);
                  ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:1705:4: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                sprintf(printBuffer,"### CoinLpIO::readLp(): Variable %s does not appear in objective function or constraints", buff);
                ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:1748:3: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                      sprintf(str,"### ERROR: Bounds; expect a number, get: %s\n",
                      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:1758:8: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                    sprintf(str,"### ERROR: Bounds; variable: %s read_sense1: %d  read_sense2: %d\n",
                    ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:1766:5: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                        sprintf(str,"### ERROR: Bounds; variable: %s read_sense1: %d  read_sense2: %d  bnd1: %f  bnd2: %f\n",
                        ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:1818:4: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                sprintf(printBuffer,"### CoinLpIO::readLp(): Integer variable %s does not appear in objective function or constraints", buff);
                ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:1854:4: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                sprintf(printBuffer,"### CoinLpIO::readLp(): Binary variable %s does not appear in objective function or constraints", buff);
                ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:1885:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(str,"### ERROR: Lost while reading: (%s)\n", buff);
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:1907:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(str,"### ERROR: Hash table: %s not found\n", colNames[i]);
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:1922:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(str,"### ERROR: Hash table: %s (obj) not found\n", colNames[i]);
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:2190:3: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                      sprintf(str,"### ERROR: Hash table: too many names\n");
                      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinLpIO.cpp:2320:8: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                    sprintf(str,"### ERROR: Hash table: too many names\n");
                    ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      [ 12%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinModel.cpp.o
      [ 14%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinModelUseful.cpp.o
      [ 14%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinModelUseful2.cpp.o
      [ 14%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinMpsIO.cpp.o
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMessageHandler.cpp:593:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(messageOut_,"%s%4.4d%c ",source_.c_str(),
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMessageHandler.cpp:622:5: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
          sprintf(messageOut_,"%s%4.4d%c ",source_.c_str(),
          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMessageHandler.cpp:732:2: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
              sprintf(messageOut_,format_,intvalue);
              ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMessageHandler.cpp:737:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(messageOut_," %d",intvalue);
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMessageHandler.cpp:760:4: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                sprintf(messageOut_,format_,doublevalue);
                ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMessageHandler.cpp:763:4: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                sprintf(messageOut_,g_format_,doublevalue);
                ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMessageHandler.cpp:773:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(messageOut_," ");
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMessageHandler.cpp:775:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(messageOut_,g_format_,doublevalue);
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMessageHandler.cpp:846:2: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
              sprintf(messageOut_,format_,stringvalue.c_str());
              ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMessageHandler.cpp:851:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(messageOut_," %s",stringvalue.c_str());
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMessageHandler.cpp:870:2: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
              sprintf(messageOut_,format_,charvalue);
              ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMessageHandler.cpp:875:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(messageOut_," %c",charvalue);
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMessageHandler.cpp:894:2: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
              sprintf(messageOut_,format_,stringvalue);
              ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMessageHandler.cpp:899:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(messageOut_," %s",stringvalue);
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      [ 14%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinOslFactorization.cpp.o
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinModel.cpp:341:8: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                    sprintf(temp,"%g",value);
                    ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinModel.cpp:363:5: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                        sprintf(temp+put,"%s%s",ifFirst ? "" : "+",name);
                        ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinModel.cpp:366:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                          sprintf(temp+put,"%g*%s",value,name);
                          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinModel.cpp:368:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                          sprintf(temp+put,"+%g*%s",value,name);
                          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinModel.cpp:725:5: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
          sprintf(name,"r%7.7d",numberRows_);
          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinModel.cpp:859:5: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
          sprintf(name,"c%7.7d",numberColumns_);
          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinModel.cpp:3439:4: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                sprintf(temp,"%g",linearRow[i]);
                ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinModel.cpp:3448:6: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                  sprintf(temp2,"%g*c%7.7d",value,jColumn);
                  ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinModel.cpp:3450:6: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                  sprintf(temp2,"+%g*c%7.7d",value,jColumn);
                  ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinModel.cpp:3487:4: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                sprintf(temp,"%g",linearRow[i]);
                ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinModel.cpp:3496:6: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                  sprintf(temp2,"%g*c%7.7d",value,jColumn);
                  ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinModel.cpp:3498:6: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                  sprintf(temp2,"+%g*c%7.7d",value,jColumn);
                  ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMpsIO.cpp:3256:6: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                  sprintf(temp2,"%g*",value);
                  ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMpsIO.cpp:3459:2: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
              sprintf(temp,"%d,%d,%s",iRow,iColumn,pos);
              ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      43 warnings generated.
      [ 14%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinOslFactorization2.cpp.o
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMpsIO.cpp:3722:4: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                sprintf(format,"%%12.%df",decimal);
                ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMpsIO.cpp:3723:4: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                sprintf(outputValue,format,value);
                ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMpsIO.cpp:3725:4: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                sprintf(outputValue,"%13.7g",value);
                ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMpsIO.cpp:3733:4: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                sprintf(format,"%%12.%df",decimal);
                ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMpsIO.cpp:3734:4: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                sprintf(outputValue,format,value);
                ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMpsIO.cpp:3736:4: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                sprintf(outputValue,"%13.6g",value);
                ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMpsIO.cpp:3797:9: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
              sprintf(outputValue,"%12.6g",value);
              ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMpsIO.cpp:3812:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(outputValue,"%.16g",value);
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMpsIO.cpp:3826:9: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
              sprintf(outputValue,"%12.6g",value);
              ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMpsIO.cpp:3992:13: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                  sprintf(newName,"%c%7.7d",first,largest);
                  ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      [ 14%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinOslFactorization3.cpp.o
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMpsIO.cpp:4934:10: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
               sprintf(rowNames[i],"R%7.7d",i);
               ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMpsIO.cpp:4940:8: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
             sprintf(rowNames[i],"R%7.7d",i);
             ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMpsIO.cpp:4950:10: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
               sprintf(columnNames[i],"C%7.7d",i);
               ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMpsIO.cpp:4956:8: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
             sprintf(columnNames[i],"C%7.7d",i);
             ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMpsIO.cpp:4991:8: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
             sprintf(rowNames[i],"R%7.7d",i);
             ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMpsIO.cpp:5001:8: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
             sprintf(columnNames[i],"C%7.7d",i);
             ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinMpsIO.cpp:5852:3: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
        sprintf(id,"%d,%d,",iRow,iColumn);
        ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      14 warnings generated.
      [ 15%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinPackedMatrix.cpp.o
      [ 15%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinPackedVector.cpp.o
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinOslFactorization.cpp:1124:5: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
          sprintf(msg,"Unable to allocate factorization memory for %d elements",
          ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinOslFactorization3.cpp:1918:12: warning: implicit conversion from 'long' to 'int' changes value from -9223372036854775807 to 1 [-Wconstant-conversion]
        int last=-LONG_MAX;
            ~~~~ ^~~~~~~~~
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinPackedMatrix.cpp:1497:8: warning: 'bind2nd<std::plus<int>, int>' is deprecated [-Wdeprecated-declarations]
                      std::bind2nd(std::plus<int>(), minorDim_));
                           ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/c++/v1/__functional/binder2nd.h:45:1: note: 'bind2nd<std::plus<int>, int>' has been explicitly marked deprecated here
      _LIBCPP_DEPRECATED_IN_CXX11 inline _LIBCPP_INLINE_VISIBILITY
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/c++/v1/__config:1054:39: note: expanded from macro '_LIBCPP_DEPRECATED_IN_CXX11'
      #  define _LIBCPP_DEPRECATED_IN_CXX11 _LIBCPP_DEPRECATED
                                            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/c++/v1/__config:1043:48: note: expanded from macro '_LIBCPP_DEPRECATED'
      #    define _LIBCPP_DEPRECATED __attribute__ ((deprecated))
                                                     ^
      1 warning generated.
      [ 15%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinPackedVectorBase.cpp.o
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinPackedVector.cpp:288:10: warning: 'bind2nd<std::plus<double>, double>' is deprecated [-Wdeprecated-declarations]
                        std::bind2nd(std::plus<double>(), value) );
                             ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/c++/v1/__functional/binder2nd.h:45:1: note: 'bind2nd<std::plus<double>, double>' has been explicitly marked deprecated here
      _LIBCPP_DEPRECATED_IN_CXX11 inline _LIBCPP_INLINE_VISIBILITY
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/c++/v1/__config:1054:39: note: expanded from macro '_LIBCPP_DEPRECATED_IN_CXX11'
      #  define _LIBCPP_DEPRECATED_IN_CXX11 _LIBCPP_DEPRECATED
                                            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/c++/v1/__config:1043:48: note: expanded from macro '_LIBCPP_DEPRECATED'
      #    define _LIBCPP_DEPRECATED __attribute__ ((deprecated))
                                                     ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinPackedVector.cpp:297:10: warning: 'bind2nd<std::minus<double>, double>' is deprecated [-Wdeprecated-declarations]
                        std::bind2nd(std::minus<double>(), value) );
                             ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/c++/v1/__functional/binder2nd.h:45:1: note: 'bind2nd<std::minus<double>, double>' has been explicitly marked deprecated here
      _LIBCPP_DEPRECATED_IN_CXX11 inline _LIBCPP_INLINE_VISIBILITY
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/c++/v1/__config:1054:39: note: expanded from macro '_LIBCPP_DEPRECATED_IN_CXX11'
      #  define _LIBCPP_DEPRECATED_IN_CXX11 _LIBCPP_DEPRECATED
                                            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/c++/v1/__config:1043:48: note: expanded from macro '_LIBCPP_DEPRECATED'
      #    define _LIBCPP_DEPRECATED __attribute__ ((deprecated))
                                                     ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinPackedVector.cpp:306:10: warning: 'bind2nd<std::multiplies<double>, double>' is deprecated [-Wdeprecated-declarations]
                        std::bind2nd(std::multiplies<double>(), value) );
                             ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/c++/v1/__functional/binder2nd.h:45:1: note: 'bind2nd<std::multiplies<double>, double>' has been explicitly marked deprecated here
      _LIBCPP_DEPRECATED_IN_CXX11 inline _LIBCPP_INLINE_VISIBILITY
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/c++/v1/__config:1054:39: note: expanded from macro '_LIBCPP_DEPRECATED_IN_CXX11'
      #  define _LIBCPP_DEPRECATED_IN_CXX11 _LIBCPP_DEPRECATED
                                            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/c++/v1/__config:1043:48: note: expanded from macro '_LIBCPP_DEPRECATED'
      #    define _LIBCPP_DEPRECATED __attribute__ ((deprecated))
                                                     ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinPackedVector.cpp:315:10: warning: 'bind2nd<std::divides<double>, double>' is deprecated [-Wdeprecated-declarations]
                        std::bind2nd(std::divides<double>(), value) );
                             ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/c++/v1/__functional/binder2nd.h:45:1: note: 'bind2nd<std::divides<double>, double>' has been explicitly marked deprecated here
      _LIBCPP_DEPRECATED_IN_CXX11 inline _LIBCPP_INLINE_VISIBILITY
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/c++/v1/__config:1054:39: note: expanded from macro '_LIBCPP_DEPRECATED_IN_CXX11'
      #  define _LIBCPP_DEPRECATED_IN_CXX11 _LIBCPP_DEPRECATED
                                            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/c++/v1/__config:1043:48: note: expanded from macro '_LIBCPP_DEPRECATED'
      #    define _LIBCPP_DEPRECATED __attribute__ ((deprecated))
                                                     ^
      4 warnings generated.
      12 warnings generated.
      [ 15%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinParam.cpp.o
      [ 15%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinParamUtils.cpp.o
      [ 16%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinPostsolveMatrix.cpp.o
      19 warnings generated.
      [ 16%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinPrePostsolveMatrix.cpp.o
      [ 16%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinPresolveDoubleton.cpp.o
      [ 16%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinPresolveDual.cpp.o
      [ 16%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinPresolveDupcol.cpp.o
      1 warning generated.
      [ 16%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinPresolveEmpty.cpp.o
      [ 17%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinPresolveFixed.cpp.o
      1 warning generated.
      [ 17%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinPresolveForcing.cpp.o
      [ 17%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinPresolveHelperFunctions.cpp.o
      [ 17%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinPresolveImpliedFree.cpp.o
      [ 17%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinPresolveIsolated.cpp.o
      [ 18%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinPresolveMatrix.cpp.o
      [ 18%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinPresolvePsdebug.cpp.o
      [ 18%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinPresolveSingleton.cpp.o
      [ 18%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinPresolveSubst.cpp.o
      [ 18%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinPresolveTighten.cpp.o
      [ 18%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinPresolveTripleton.cpp.o
      [ 20%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinPresolveUseless.cpp.o
      [ 20%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinPresolveZeros.cpp.o
      [ 20%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinSearchTree.cpp.o
      [ 20%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinShallowPackedVector.cpp.o
      [ 20%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinSimpFactorization.cpp.o
      [ 20%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinSnapshot.cpp.o
      [ 21%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinStructuredModel.cpp.o
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinSearchTree.cpp:38:3: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
        sprintf(output, "%08X%08X%08X%08X",
        ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      [ 21%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinWarmStartBasis.cpp.o
      [ 21%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinWarmStartDual.cpp.o
      1 warning generated.
      [ 21%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinWarmStartPrimalDual.cpp.o
      [ 21%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/CoinUtils/CoinWarmStartVector.cpp.o
      [ 22%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Osi/OsiAuxInfo.cpp.o
      [ 22%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Osi/OsiBranchingObject.cpp.o
      [ 22%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Osi/OsiChooseVariable.cpp.o
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinStructuredModel.cpp:1209:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(rowName,"row_%d",iBlock);
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinStructuredModel.cpp:1211:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(columnName,"column_%d",iBlock);
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinStructuredModel.cpp:1689:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(rowName,"row_%d",iBlock);
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/coin/CoinUtils/CoinStructuredModel.cpp:1691:7: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
            sprintf(columnName,"column_%d",iBlock);
            ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      [ 22%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Osi/OsiColCut.cpp.o
      [ 22%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Osi/OsiCut.cpp.o
      [ 22%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Osi/OsiCuts.cpp.o
      [ 23%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Osi/OsiNames.cpp.o
      [ 23%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Osi/OsiPresolve.cpp.o
      4 warnings generated.
      [ 23%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Osi/OsiRowCut.cpp.o
      [ 23%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Osi/OsiRowCutDebugger.cpp.o
      [ 23%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Osi/OsiSolverBranch.cpp.o
      [ 24%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/Osi/OsiSolverInterface.cpp.o
      [ 24%] Building CXX object ogdf-conda/src/CMakeFiles/COIN.dir/src/coin/OsiClp/OsiClpSolverInterface.cpp.o
      [ 24%] Linking CXX static library libCOIN.a
      [ 24%] Built target COIN
      [ 24%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/augmentation/PlanarAugmentation.cpp.o
      [ 24%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/augmentation/DfsMakeBiconnected.cpp.o
      [ 24%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/EdgeComparerSimple.cpp.o
      [ 24%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/CombinatorialEmbedding.cpp.o
      [ 24%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/augmentation/PlanarAugmentationFix.cpp.o
      [ 25%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/AdjacencyOracle.cpp.o
      [ 25%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/GF2Solver.cpp.o
      [ 25%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/EdgeComparer.cpp.o
      [ 27%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/Graph.cpp.o
      [ 27%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/GraphAttributes.cpp.o
      [ 27%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/GraphCopy.cpp.o
      [ 27%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/GridLayout.cpp.o
      [ 27%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/Hashing.cpp.o
      [ 27%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/Layout.cpp.o
      [ 28%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/LayoutStandards.cpp.o
      [ 28%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/LayoutStatistics.cpp.o
      [ 28%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/LayoutStatistics_intersect.cpp.o
      [ 28%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/Logger.cpp.o
      [ 28%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/Math.cpp.o
      [ 29%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/Module.cpp.o
      [ 29%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/NearestRectangleFinder.cpp.o
      [ 29%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/PreprocessorLayout.cpp.o
      [ 29%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/STNumbering.cpp.o
      [ 29%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/Stopwatch.cpp.o
      [ 29%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/System.cpp.o
      [ 30%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/basic.cpp.o
      [ 30%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/extended_graph_alg.cpp.o
      [ 30%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/geometry.cpp.o
      [ 30%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/graph_generators/deterministic.cpp.o
      [ 30%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/graph_generators/operations.cpp.o
      [ 30%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/graph_generators/randomHierarchy.cpp.o
      [ 31%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/graph_generators/randomized.cpp.o
      [ 31%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/graphics.cpp.o
      [ 31%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/internal/config.cpp.o
      [ 31%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/memory/PoolMemoryAllocator.cpp.o
      [ 31%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/basic/simple_graph_alg.cpp.o
      [ 32%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/clique/CliqueFinderHeuristic.cpp.o
      [ 32%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/clique/CliqueFinderModule.cpp.o
      [ 32%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/clique/CliqueFinderSPQR.cpp.o
      [ 32%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/cluster/CPlanarEdgeInserter.cpp.o
      [ 32%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/cluster/CPlanarSubClusteredGraph.cpp.o
      [ 32%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/cluster/CconnectClusterPlanar.cpp.o
      [ 34%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/cluster/CconnectClusterPlanarEmbed.cpp.o
      [ 34%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/cluster/ClusterAnalysis.cpp.o
      [ 34%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/cluster/ClusterGraph.cpp.o
      [ 34%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/cluster/ClusterGraphAttributes.cpp.o
      [ 34%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/cluster/ClusterOrthoLayout.cpp.o
      [ 35%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/cluster/ClusterOrthoShaper.cpp.o
      [ 35%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/cluster/ClusterPlanRep.cpp.o
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/ogdf/cluster/ClusterOrthoShaper.cpp:1006:8: warning: variable 'lowsum' set but not used [-Wunused-but-set-variable]
                              int lowsum = 0, upsum = 0;
                                  ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/ogdf/cluster/ClusterOrthoShaper.cpp:1006:20: warning: variable 'upsum' set but not used [-Wunused-but-set-variable]
                              int lowsum = 0, upsum = 0;
                                              ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/ogdf/cluster/ClusterOrthoShaper.cpp:163:6: warning: variable 'checksum' set but not used [-Wunused-but-set-variable]
              int checksum = 0;
                  ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/ogdf/cluster/ClusterOrthoShaper.cpp:1107:6: warning: variable 'totalNumBends' set but not used [-Wunused-but-set-variable]
              int totalNumBends = 0;
                  ^
      [ 35%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/cluster/ClusterPlanarity.cpp.o
      [ 35%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/cluster/ClusterPlanarizationLayout.cpp.o
      [ 35%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/cluster/HananiTutteCPlanarity.cpp.o
      [ 35%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/cluster/MaximumCPlanarSubgraph.cpp.o
      [ 36%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/cluster/internal/CP_MasterBase.cpp.o
      4 warnings generated.
      [ 36%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/cluster/internal/CPlanarSubClusteredST.cpp.o
      [ 36%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/cluster/internal/CPlanarityMaster.cpp.o
      [ 36%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/cluster/internal/CPlanaritySub.cpp.o
      [ 36%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/cluster/internal/ChunkConnection.cpp.o
      [ 37%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/cluster/internal/ClusterKuratowskiConstraint.cpp.o
      [ 37%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/cluster/internal/CutConstraint.cpp.o
      [ 37%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/cluster/internal/EdgeVar.cpp.o
      [ 37%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/cluster/internal/MaxCPlanarMaster.cpp.o
      [ 37%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/cluster/internal/MaxCPlanarSub.cpp.o
      [ 37%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/cluster/internal/MaxPlanarEdgesConstraint.cpp.o
      [ 38%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/cluster/internal/MinimalClusterConnection.cpp.o
      [ 38%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/decomposition/BCTree.cpp.o
      [ 38%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/decomposition/DynamicBCTree.cpp.o
      [ 38%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/decomposition/DynamicSPQRForest.cpp.o
      [ 38%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/decomposition/DynamicSPQRTree.cpp.o
      [ 38%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/decomposition/PlanarSPQRTree.cpp.o
      [ 40%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/decomposition/StaticSPQRTree.cpp.o
      [ 40%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/DavidsonHarel.cpp.o
      [ 40%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/DavidsonHarelLayout.cpp.o
      [ 40%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/FMMMLayout.cpp.o
      [ 40%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/FastMultipoleEmbedder.cpp.o
      [ 41%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/GEMLayout.cpp.o
      [ 41%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/MultilevelLayout.cpp.o
      [ 41%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/NodeRespecterLayout.cpp.o
      [ 41%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/PivotMDS.cpp.o
      [ 41%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/SpringEmbedderFRExact.cpp.o
      [ 41%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/SpringEmbedderGridVariant.cpp.o
      [ 42%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/SpringEmbedderKK.cpp.o
      [ 42%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/TutteLayout.cpp.o
      [ 42%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/StressMinimization.cpp.o
      [ 42%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/davidson_harel/Attraction.cpp.o
      [ 42%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/davidson_harel/EnergyFunction.cpp.o
      [ 43%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/davidson_harel/NodePairEnergy.cpp.o
      [ 43%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/davidson_harel/Overlap.cpp.o
      [ 43%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/davidson_harel/Planarity.cpp.o
      [ 43%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/davidson_harel/PlanarityGrid.cpp.o
      [ 43%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/davidson_harel/Repulsion.cpp.o
      [ 43%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/davidson_harel/UniformGrid.cpp.o
      [ 44%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/dtree/GalaxyLevel.cpp.o
      [ 44%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/fast_multipole_embedder/ArrayGraph.cpp.o
      [ 44%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/fast_multipole_embedder/EdgeChain.cpp.o
      [ 44%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/fast_multipole_embedder/FMEKernel.cpp.o
      [ 44%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/fast_multipole_embedder/FMEMultipoleKernel.cpp.o
      [ 45%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/fast_multipole_embedder/FMEThread.cpp.o
      [ 45%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/fast_multipole_embedder/GalaxyMultilevel.cpp.o
      [ 45%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/fast_multipole_embedder/LinearQuadtree.cpp.o
      [ 45%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/fast_multipole_embedder/LinearQuadtreeBuilder.cpp.o
      [ 45%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/fast_multipole_embedder/LinearQuadtreeExpansion.cpp.o
      [ 45%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/fast_multipole_embedder/WSPD.cpp.o
      [ 47%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/fmmm/EdgeAttributes.cpp.o
      [ 47%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/fmmm/FruchtermanReingold.cpp.o
      [ 47%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/fmmm/MAARPacking.cpp.o
      [ 47%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/fmmm/Multilevel.cpp.o
      [ 47%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/fmmm/NewMultipoleMethod.cpp.o
      [ 48%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/fmmm/NodeAttributes.cpp.o
      [ 48%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/fmmm/Set.cpp.o
      [ 48%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/fmmm/new_multipole_method/QuadTreeNM.cpp.o
      [ 48%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/fmmm/new_multipole_method/QuadTreeNodeNM.cpp.o
      [ 48%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/fmmm/numexcept.cpp.o
      [ 48%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/multilevel_mixer/BarycenterPlacer.cpp.o
      [ 49%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/multilevel_mixer/CirclePlacer.cpp.o
      [ 49%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/multilevel_mixer/EdgeCoverMerger.cpp.o
      [ 49%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/multilevel_mixer/IndependentSetMerger.cpp.o
      [ 49%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/multilevel_mixer/LocalBiconnectedMerger.cpp.o
      [ 49%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/multilevel_mixer/MatchingMerger.cpp.o
      [ 49%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/multilevel_mixer/MedianPlacer.cpp.o
      [ 50%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/multilevel_mixer/ModularMultilevelMixer.cpp.o
      [ 50%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/multilevel_mixer/MultilevelGraph.cpp.o
      [ 50%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/multilevel_mixer/RandomMerger.cpp.o
      [ 50%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/multilevel_mixer/RandomPlacer.cpp.o
      [ 50%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/multilevel_mixer/ScalingLayout.cpp.o
      [ 51%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/multilevel_mixer/SolarMerger.cpp.o
      [ 51%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/multilevel_mixer/SolarPlacer.cpp.o
      [ 51%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/multilevel_mixer/ZeroPlacer.cpp.o
      [ 51%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/energybased/spring_embedder/SEGV_ForceModel.cpp.o
      [ 51%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/external/Minisat.cpp.o
      [ 51%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/external/backward.cpp.o
      [ 52%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/DLParser.cpp.o
      [ 52%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/DOT.cpp.o
      [ 52%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/DotLexer.cpp.o
      [ 52%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/DotParser.cpp.o
      [ 52%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/GDF.cpp.o
      [ 54%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/GEXF.cpp.o
      [ 54%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/GML.cpp.o
      [ 54%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/GdfParser.cpp.o
      [ 54%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/GexfParser.cpp.o
      [ 54%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/GmlParser.cpp.o
      [ 54%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/GraphIO.cpp.o
      [ 55%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/GraphIO_dl.cpp.o
      [ 55%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/GraphIO_dot.cpp.o
      [ 55%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/GraphIO_g6.cpp.o
      [ 55%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/GraphIO_gdf.cpp.o
      [ 55%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/GraphIO_gexf.cpp.o
      [ 56%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/GraphIO_gml.cpp.o
      [ 56%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/GraphIO_graphml.cpp.o
      [ 56%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/GraphIO_hyper.cpp.o
      [ 56%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/GraphIO_leda.cpp.o
      [ 56%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/GraphIO_tlp.cpp.o
      [ 56%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/GraphML.cpp.o
      [ 57%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/GraphMLParser.cpp.o
      [ 57%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/SvgPrinter.cpp.o
      [ 57%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/Tlp.cpp.o
      [ 57%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/TlpLexer.cpp.o
      [ 57%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/TlpParser.cpp.o
      [ 58%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/TsplibXmlParser.cpp.o
      [ 58%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/fileformats/Utils.cpp.o
      [ 58%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/graphalg/Clusterer.cpp.o
      [ 58%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/graphalg/ConnectivityTester.cpp.o
      [ 58%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/graphalg/ConvexHull.cpp.o
      [ 58%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/graphalg/EdgeIndependentSpanningTrees.cpp.o
      [ 60%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/graphalg/GraphReduction.cpp.o
      [ 60%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/graphalg/Matching.cpp.o
      [ 60%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/graphalg/MaxAdjOrdering.cpp.o
      [ 60%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/graphalg/MinimumCut.cpp.o
      [ 60%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/graphalg/ModifiedNibbleClusterer.cpp.o
      [ 60%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/graphalg/PageRank.cpp.o
      [ 61%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/graphalg/ShortestPathWithBFM.cpp.o
      [ 61%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/graphalg/Triconnectivity.cpp.o
      [ 61%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/hypergraph/EdgeStandardRep.cpp.o
      [ 61%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/hypergraph/Hypergraph.cpp.o
      [ 61%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/hypergraph/HypergraphLayout.cpp.o
      [ 62%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/labeling/ELabelPosSimple.cpp.o
      [ 62%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/layered/AcyclicSubgraphModule.cpp.o
      [ 62%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/layered/BarycenterHeuristic.cpp.o
      [ 62%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/layered/BlockOrder.cpp.o
      [ 62%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/layered/CoffmanGrahamRanking.cpp.o
      [ 62%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/layered/CrossingMinInterfaces.cpp.o
      [ 63%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/layered/CrossingsMatrix.cpp.o
      [ 63%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/layered/DfsAcyclicSubgraph.cpp.o
      [ 63%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/layered/ExtendedNestingGraph.cpp.o
      [ 63%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/layered/FastHierarchyLayout.cpp.o
      [ 63%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/layered/FastSimpleHierarchyLayout.cpp.o
      [ 64%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/layered/GreedyCycleRemoval.cpp.o
      [ 64%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/layered/GreedyInsertHeuristic.cpp.o
      [ 64%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/layered/GreedySwitchHeuristic.cpp.o
      [ 64%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/layered/HierarchyLayoutModule.cpp.o
      [ 64%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/layered/LongestPathRanking.cpp.o
      [ 65%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/layered/OptimalHierarchyClusterLayout.cpp.o
      [ 65%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/layered/OptimalHierarchyLayout.cpp.o
      [ 65%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/layered/MedianHeuristic.cpp.o
      [ 65%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/layered/OptimalRanking.cpp.o
      [ 65%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/layered/SiftingHeuristic.cpp.o
      [ 65%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/layered/SplitHeuristic.cpp.o
      [ 67%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/layered/SugiyamaLayout.cpp.o
      [ 67%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/aba_constraint.cpp.o
      [ 67%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/abacusroot.cpp.o
      [ 67%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/branchrule.cpp.o
      [ 67%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/column.cpp.o
      [ 67%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/conbranchrule.cpp.o
      [ 68%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/conclass.cpp.o
      [ 68%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/convar.cpp.o
      [ 68%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/csense.cpp.o
      [ 68%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/fixcand.cpp.o
      [ 68%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/fsvarstat.cpp.o
      [ 68%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/global.cpp.o
      [ 69%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/history.cpp.o
      [ 69%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/infeascon.cpp.o
      [ 69%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/lp.cpp.o
      [ 69%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/lpif.cpp.o
      [ 69%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/lpmasterosi.cpp.o
      [ 70%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/lpsub.cpp.o
      [ 70%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/lpvarstat.cpp.o
      [ 70%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/master.cpp.o
      [ 70%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/opensub.cpp.o
      [ 70%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/optsense.cpp.o
      [ 70%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/osiif.cpp.o
      [ 71%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/row.cpp.o
      [ 71%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/setbranchrule.cpp.o
      [ 71%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/slackstat.cpp.o
      [ 71%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/sparvec.cpp.o
      [ 71%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/srowcon.cpp.o
      [ 72%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/sub.cpp.o
      [ 72%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/tailoff.cpp.o
      [ 72%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/valbranchrule.cpp.o
      [ 72%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/variable.cpp.o
      [ 72%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/abacus/vartype.cpp.o
      [ 72%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/minisat/core/Solver.cpp.o
      [ 74%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/minisat/simp/SimpSolver.cpp.o
      [ 74%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lib/pugixml/pugixml.cpp.o
      [ 74%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/lpsolver/LPSolver.cpp.o
      [ 74%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/misclayout/BalloonLayout.cpp.o
      [ 74%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/misclayout/BertaultLayout.cpp.o
      [ 75%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/misclayout/CircularLayout.cpp.o
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/ogdf/lib/pugixml/pugixml.cpp:4557:3: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                      sprintf(buf, "%.9g", value);
                      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/ogdf/lib/pugixml/pugixml.cpp:4566:3: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                      sprintf(buf, "%.17g", value);
                      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/ogdf/lib/pugixml/pugixml.cpp:7961:3: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations]
                      sprintf(buffer, "%.*e", DBL_DIG, value);
                      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/stdio.h:188:1: note: 'sprintf' has been explicitly marked deprecated here
      __deprecated_msg("This function is provided for compatibility reasons only.  Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.")
      ^
      /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
              #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                            ^
      [ 75%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/misclayout/LinearLayout.cpp.o
      [ 75%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/misclayout/ProcrustesSubLayout.cpp.o
      [ 75%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/orthogonal/CompactionConstraintGraph.cpp.o
      [ 75%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/orthogonal/EdgeRouter.cpp.o
      [ 75%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/orthogonal/FlowCompaction.cpp.o
      [ 76%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/orthogonal/LongestPathCompaction.cpp.o
      [ 76%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/orthogonal/OrthoLayout.cpp.o
      [ 76%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/orthogonal/OrthoRep.cpp.o
      [ 76%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/orthogonal/OrthoShaper.cpp.o
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/ogdf/orthogonal/OrthoShaper.cpp:1363:8: warning: variable 'lowsum' set but not used [-Wunused-but-set-variable]
                              int lowsum = 0, upsum = 0;
                                  ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/ogdf/orthogonal/OrthoShaper.cpp:1363:20: warning: variable 'upsum' set but not used [-Wunused-but-set-variable]
                              int lowsum = 0, upsum = 0;
                                              ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/ogdf/orthogonal/OrthoShaper.cpp:1465:6: warning: variable 'totalNumBends' set but not used [-Wunused-but-set-variable]
              int totalNumBends = 0;
                  ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/ogdf/orthogonal/OrthoShaper.cpp:176:6: warning: variable 'checksum' set but not used [-Wunused-but-set-variable]
              int checksum = 0;
                  ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/ogdf/orthogonal/OrthoShaper.cpp:2503:7: warning: variable 'lowsum' set but not used [-Wunused-but-set-variable]
                      int lowsum = 0, upsum = 0;
                          ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/ogdf/orthogonal/OrthoShaper.cpp:2503:19: warning: variable 'upsum' set but not used [-Wunused-but-set-variable]
                      int lowsum = 0, upsum = 0;
                                      ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/ogdf/orthogonal/OrthoShaper.cpp:1660:6: warning: variable 'checksum' set but not used [-Wunused-but-set-variable]
              int checksum = 0;
                  ^
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/ogdf-conda/src/src/ogdf/orthogonal/OrthoShaper.cpp:2601:6: warning: variable 'totalNumBends' set but not used [-Wunused-but-set-variable]
              int totalNumBends = 0;
                  ^
      [ 76%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/orthogonal/edge_router/NodeInfo.cpp.o
      [ 77%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/orthogonal/internal/CommonCompactionConstraintGraphBase.cpp.o
      [ 77%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/packing/CCLayoutPackModule.cpp.o
      3 warnings generated.
      [ 77%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/packing/ComponentSplitterLayout.cpp.o
      [ 77%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/packing/SimpleCCPacker.cpp.o
      [ 77%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/packing/TileToRowsCCPacker.cpp.o
      [ 77%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/BoothLueker.cpp.o
      [ 78%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/BoyerMyrvold.cpp.o
      8 warnings generated.
      [ 78%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/EmbedderMaxFace.cpp.o
      [ 78%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/EmbedderMaxFaceLayers.cpp.o
      [ 78%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/EmbedderMinDepth.cpp.o
      [ 78%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/EmbedderMinDepthMaxFace.cpp.o
      [ 78%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/EmbedderMinDepthMaxFaceLayers.cpp.o
      [ 80%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/EmbedderMinDepthPiTa.cpp.o
      [ 80%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/EmbedderOptimalFlexDraw.cpp.o
      [ 80%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/ExtractKuratowskis.cpp.o
      [ 80%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/FixedEmbeddingInserter.cpp.o
      [ 80%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/MMCrossingMinimizationModule.cpp.o
      [ 81%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/MMFixedEmbeddingInserter.cpp.o
      [ 81%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/MMSubgraphPlanarizer.cpp.o
      [ 81%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/MMVariableEmbeddingInserter.cpp.o
      [ 81%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/MultiEdgeApproxInserter.cpp.o
      [ 81%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/PlanRep.cpp.o
      [ 81%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/PlanRepExpansion.cpp.o
      [ 82%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/PlanRepInc.cpp.o
      [ 82%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/PlanRepLight.cpp.o
      [ 82%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/PlanarSubgraphBoyerMyrvold.cpp.o
      [ 82%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/PlanarizationGridLayout.cpp.o
      [ 82%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/PlanarizationLayout.cpp.o
      [ 83%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/PlanarizerChordlessCycle.cpp.o
      [ 83%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/PlanarizerMixedInsertion.cpp.o
      [ 83%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/PlanarizerStarReinsertion.cpp.o
      [ 83%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/SimpleEmbedder.cpp.o
      [ 83%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/SimpleIncNodeInserter.cpp.o
      [ 83%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/StarInserter.cpp.o
      [ 84%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/SubgraphPlanarizer.cpp.o
      [ 84%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/TopologyModule.cpp.o
      [ 84%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/VariableEmbeddingInserter.cpp.o
      [ 84%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/VariableEmbeddingInserterDyn.cpp.o
      [ 84%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/booth_lueker/EmbedPQTree.cpp.o
      [ 85%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/booth_lueker/PlanarPQTree.cpp.o
      [ 85%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/boyer_myrvold/BoyerMyrvoldInit.cpp.o
      [ 85%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/boyer_myrvold/BoyerMyrvoldPlanar.cpp.o
      [ 85%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/embedder/CrossingStructure.cpp.o
      [ 85%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/boyer_myrvold/FindKuratowskis.cpp.o
      [ 85%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/embedding_inserter/FixEdgeInserterCore.cpp.o
      [ 87%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/embedding_inserter/VarEdgeInserterCore.cpp.o
      [ 87%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/embedding_inserter/VarEdgeInserterDynCore.cpp.o
      [ 87%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/planar_subgraph_fast/PlanarSubgraphPQTree.cpp.o
      [ 87%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarity/planarization_layout/CliqueReplacer.cpp.o
      [ 87%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarlayout/BiconnectedShellingOrder.cpp.o
      [ 88%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarlayout/BitonicOrdering.cpp.o
      [ 88%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarlayout/FPPLayout.cpp.o
      [ 88%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarlayout/GridLayoutModule.cpp.o
      [ 88%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarlayout/LeftistOrdering.cpp.o
      [ 88%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarlayout/MMCBBase.cpp.o
      [ 88%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarlayout/MixedModelCrossingsBeautifierModule.cpp.o
      [ 89%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarlayout/MixedModelLayout.cpp.o
      [ 89%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarlayout/PlanarDrawLayout.cpp.o
      [ 89%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarlayout/PlanarStraightLayout.cpp.o
      [ 89%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarlayout/SchnyderLayout.cpp.o
      [ 89%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarlayout/ShellingOrder.cpp.o
      [ 89%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarlayout/ShellingOrderModule.cpp.o
      [ 90%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarlayout/TriconnectedShellingOrder.cpp.o
      [ 90%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarlayout/mixed_model_layout/IOPoints.cpp.o
      [ 90%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/planarlayout/mixed_model_layout/MixedModelBase.cpp.o
      [ 90%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/simultaneous/SimDraw.cpp.o
      [ 90%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/simultaneous/SimDrawCaller.cpp.o
      [ 91%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/simultaneous/SimDrawColorizer.cpp.o
      [ 91%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/simultaneous/SimDrawCreator.cpp.o
      [ 91%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/simultaneous/SimDrawCreatorSimple.cpp.o
      [ 91%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/simultaneous/SimDrawManipulatorModule.cpp.o
      [ 91%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/tree/LCA.cpp.o
      [ 91%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/tree/RadialTreeLayout.cpp.o
      [ 92%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/tree/TreeLayout.cpp.o
      [ 92%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/uml/FixedEmbeddingInserterUML.cpp.o
      [ 92%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/uml/OrthoLayoutUML.cpp.o
      [ 92%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/uml/PlanRepUML.cpp.o
      [ 92%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/uml/PlanarizationLayoutUML.cpp.o
      [ 94%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/uml/PlanarizationLayoutUML_inc.cpp.o
      [ 94%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/uml/SubgraphPlanarizerUML.cpp.o
      [ 94%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/uml/UMLCrossingMinimizationModule.cpp.o
      [ 94%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/uml/UMLGraph.cpp.o
      [ 94%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/uml/UmlDiagramGraph.cpp.o
      [ 94%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/uml/UmlModelGraph.cpp.o
      [ 95%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/uml/VariableEmbeddingInserterDynUML.cpp.o
      [ 95%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/uml/VariableEmbeddingInserterUML.cpp.o
      [ 95%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/upward/DominanceLayout.cpp.o
      [ 95%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/upward/ExpansionGraph.cpp.o
      [ 95%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/upward/FUPSSimple.cpp.o
      [ 96%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/upward/FaceSinkGraph.cpp.o
      [ 96%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/upward/FixedEmbeddingUpwardEdgeInserter.cpp.o
      [ 96%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/upward/LayerBasedUPRLayout.cpp.o
      [ 96%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/upward/MaximalFUPS.cpp.o
      [ 96%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/upward/SubgraphUpwardPlanarizer.cpp.o
      [ 96%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/upward/UpwardPlanRep.cpp.o
      [ 97%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/upward/UpwardPlanarSubgraphModule.cpp.o
      [ 97%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/upward/UpwardPlanarSubgraphSimple.cpp.o
      [ 97%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/upward/UpwardPlanarity.cpp.o
      [ 97%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/upward/VisibilityLayout.cpp.o
      [ 97%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/upward/internal/UpSAT.cpp.o
      [ 98%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/upward/internal/UpwardPlanaritySingleSource.cpp.o
      [ 98%] Building CXX object ogdf-conda/src/CMakeFiles/OGDF.dir/src/ogdf/upward/internal/UpwardPlanarityEmbeddedDigraph.cpp.o
      [ 98%] Linking CXX static library libOGDF.a
      [ 98%] Built target OGDF
      [ 98%] Building CXX object CMakeFiles/_tmap.dir/src/_tmap/layout.cc.o
      [ 98%] Building CXX object CMakeFiles/_tmap.dir/src/_tmap/lshforest.cc.o
      [ 98%] Building CXX object CMakeFiles/_tmap.dir/src/_tmap/minhash.cc.o
      [ 98%] Building CXX object CMakeFiles/_tmap.dir/src/_tmap/bindings.cc.o
      [100%] Building CXX object CMakeFiles/_tmap.dir/src/_tmap/analyse.cc.o
      In file included from /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/src/_tmap/minhash.cc:10:
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/src/_tmap/minhash.hh:24:10: fatal error: 'omp.h' file not found
      #include "omp.h"
               ^~~~~~~
      1 error generated.
      make[2]: *** [CMakeFiles/_tmap.dir/src/_tmap/minhash.cc.o] Error 1
      make[2]: *** Waiting for unfinished jobs....
      In file included from /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/src/_tmap/bindings.cc:12:
      /private/var/folders/wd/9wf894d55zx_63dyrscm7nj00000gq/T/pip-req-build-_u91c33m/src/_tmap/minhash.hh:24:10: fatal error: 'omp.h' file not found
      #include "omp.h"
               ^~~~~~~
      1 error generated.
      make[2]: *** [CMakeFiles/_tmap.dir/src/_tmap/bindings.cc.o] Error 1
      make[1]: *** [CMakeFiles/_tmap.dir/all] Error 2
      make: *** [all] Error 2
      Setup.py cfg: Release
      Traceback (most recent call last):
        File "/opt/homebrew/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 351, in <module>
          main()
        File "/opt/homebrew/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 333, in main
          json_out['return_val'] = hook(**hook_input['kwargs'])
        File "/opt/homebrew/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 249, in build_wheel
          return _build_backend().build_wheel(wheel_directory, config_settings,
        File "/opt/homebrew/Cellar/[email protected]/3.10.9/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/setuptools/build_meta.py", line 413, in build_wheel
          return self._build_with_temp_dir(['bdist_wheel'], '.whl',
        File "/opt/homebrew/Cellar/[email protected]/3.10.9/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/setuptools/build_meta.py", line 398, in _build_with_temp_dir
          self.run_setup()
        File "/opt/homebrew/Cellar/[email protected]/3.10.9/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/setuptools/build_meta.py", line 484, in run_setup
          super(_BuildMetaLegacyBackend,
        File "/opt/homebrew/Cellar/[email protected]/3.10.9/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/setuptools/build_meta.py", line 335, in run_setup
          exec(code, locals())
        File "<string>", line 94, in <module>
        File "/opt/homebrew/Cellar/[email protected]/3.10.9/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/setuptools/__init__.py", line 87, in setup
          return distutils.core.setup(**attrs)
        File "/opt/homebrew/Cellar/[email protected]/3.10.9/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/setuptools/_distutils/core.py", line 185, in setup
          return run_commands(dist)
        File "/opt/homebrew/Cellar/[email protected]/3.10.9/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/setuptools/_distutils/core.py", line 201, in run_commands
          dist.run_commands()
        File "/opt/homebrew/Cellar/[email protected]/3.10.9/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/setuptools/_distutils/dist.py", line 969, in run_commands
          self.run_command(cmd)
        File "/opt/homebrew/Cellar/[email protected]/3.10.9/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/setuptools/dist.py", line 1208, in run_command
          super().run_command(command)
        File "/opt/homebrew/Cellar/[email protected]/3.10.9/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/setuptools/_distutils/dist.py", line 988, in run_command
          cmd_obj.run()
        File "/opt/homebrew/Cellar/[email protected]/3.10.9/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/wheel/bdist_wheel.py", line 325, in run
          self.run_command("build")
        File "/opt/homebrew/Cellar/[email protected]/3.10.9/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/setuptools/_distutils/cmd.py", line 318, in run_command
          self.distribution.run_command(command)
        File "/opt/homebrew/Cellar/[email protected]/3.10.9/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/setuptools/dist.py", line 1208, in run_command
          super().run_command(command)
        File "/opt/homebrew/Cellar/[email protected]/3.10.9/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/setuptools/_distutils/dist.py", line 988, in run_command
          cmd_obj.run()
        File "/opt/homebrew/Cellar/[email protected]/3.10.9/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/setuptools/_distutils/command/build.py", line 132, in run
          self.run_command(cmd_name)
        File "/opt/homebrew/Cellar/[email protected]/3.10.9/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/setuptools/_distutils/cmd.py", line 318, in run_command
          self.distribution.run_command(command)
        File "/opt/homebrew/Cellar/[email protected]/3.10.9/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/setuptools/dist.py", line 1208, in run_command
          super().run_command(command)
        File "/opt/homebrew/Cellar/[email protected]/3.10.9/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/setuptools/_distutils/dist.py", line 988, in run_command
          cmd_obj.run()
        File "<string>", line 42, in run
        File "<string>", line 88, in build_extension
        File "/opt/homebrew/Cellar/[email protected]/3.10.9/Frameworks/Python.framework/Versions/3.10/lib/python3.10/subprocess.py", line 369, in check_call
          raise CalledProcessError(retcode, cmd)
      subprocess.CalledProcessError: Command '['cmake', '--build', '.', '--config', 'Release', '--', '-j8']' returned non-zero exit status 2.
      [end of output]
  
  note: This error originates from a subprocess, and is likely not a problem with pip.
  ERROR: Failed building wheel for tmap-viz
  Building wheel for annoy (setup.py) ... done
  Created wheel for annoy: filename=annoy-1.17.1-cp310-cp310-macosx_12_0_arm64.whl size=61401 sha256=d736c8dabd0c8f981982eea6a4ac916eabaeec2629dfef2c3304392c48b111a1
  Stored in directory: /Users/adrutz/Library/Caches/pip/wheels/1a/8a/8b/ca301ec85de2c145c45b09994765966c7148e54dbbf2b8bfff
Successfully built annoy
Failed to build tmap-viz
ERROR: Could not build wheels for tmap-viz, which is required to install pyproject.toml-based projects

I installed both cmake and libomp with brew, and did

export LDFLAGS="-L/opt/homebrew/opt/libomp/lib"
export CPPFLAGS="-I/opt/homebrew/opt/libomp/include"

any idea?

from tmap.

doublethefish avatar doublethefish commented on May 30, 2024

fatal error: 'omp.h' file not found

@Adafede try installing OMP, on OSX you can get this via homebrew libomp. You might need to set the LDFLAGS/CPPFLAGS but IIRC that's already done for you in the Cmake files.

Everyone: most researchers/data scientists/Phds I've managed or worked with know the basics of how to identify compiler errors, and the good ones are able to work out the specific errors for themselves.

If you work out your specific problem, feel free to submit a PR against the README with how you solved it. That would be fair.

Finally, if anyone wants to help me get the github actions uploading the python wheels to pypi, that would solve everyone's problems, including mine.

from tmap.

Adafede avatar Adafede commented on May 30, 2024

@doublethefish It's installed. πŸ˜•

I installed both cmake and libomp with brew, and did
export LDFLAGS="-L/opt/homebrew/opt/libomp/lib"
export CPPFLAGS="-I/opt/homebrew/opt/libomp/include"
any idea?

from tmap.

doublethefish avatar doublethefish commented on May 30, 2024

Perhaps start with googling your compiler error: fatal error: 'omp.h' file not found, perhaps along with the CPU architecture.

I would also confirm that omp.h exists in homebrew's /opt somewhere.

from tmap.

doublethefish avatar doublethefish commented on May 30, 2024

Not yet, not even had time to google it. Thank you for sharing :)

from tmap.

Adafede avatar Adafede commented on May 30, 2024

@doublethefish Here it is: doublethefish#1

CMake was not finding openMP properly, so just had to add export CXXFLAGS="-I/opt/homebrew/opt/libomp/include"

from tmap.

mjwen avatar mjwen commented on May 30, 2024

For those who just want to install a local build of TMAP, I've created a bash script to do it.

All you need to do is bash install_tmap.sh. It is tested on Mac and Linux; the only dependence is conda and no brew and such is needed.

See https://gist.github.com/mjwen/0548a685412881f8802afcb31552b9f1

from tmap.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.