Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
eea1edb
Add PorkchopPlot, KinematicsRobotArm, VehicleDynamics real-world prob…
Oct 16, 2025
da5c3a5
Merge pull request #113 from OpenOptimizationOrg/add-problems
ShuaiqunPan Oct 16, 2025
4d0a2ca
Add global search box, and update webpage.
kvdblom Oct 29, 2025
94cbbb2
Update reference links to dois.
kvdblom Oct 29, 2025
710cb44
Update README with form link
Dvermetten Nov 13, 2025
4970bc7
Remove 'now' from added form text
Dvermetten Nov 13, 2025
ca56f69
Merge pull request #118 from OpenOptimizationOrg/form-addition
kvdblom Nov 13, 2025
515700b
github action that triggers checks
CIGbalance Nov 19, 2025
a775d47
fixing syntax
CIGbalance Nov 19, 2025
754a496
only execute when the file changes
CIGbalance Nov 19, 2025
cfa8f0c
Add link on the website to the google form for problem/benchmark subm…
kvdblom Dec 3, 2025
417f82f
Merge pull request #114 from OpenOptimizationOrg/feat/ga_consistency
kvdblom Jan 8, 2026
d3fa758
Add problems from Tailoring RSP workshop
Dvermetten Jan 28, 2026
9275c28
Minor fixes and website generation.
kvdblom Jan 28, 2026
ad3c1f8
Merge pull request #142 from OpenOptimizationOrg/tailoring
kvdblom Jan 28, 2026
6c6e342
Fix field value consistency for searchability.
kvdblom Jan 29, 2026
5410cc6
Change links processing for html conversion
Dvermetten Feb 11, 2026
4e11ce1
Also process links starting with www
Dvermetten Mar 11, 2026
6da8f97
Merge pull request #145 from OpenOptimizationOrg/feat/html_links
kvdblom Mar 25, 2026
6ccd0ac
Merge branch 'main' into feat/ga_checks
CIGbalance Apr 8, 2026
5e0094d
testing tests and gitignore
CIGbalance Apr 8, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .github/workflows/new_problem_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: New Problem Check

on:
push:
paths:
Comment on lines +1 to +5
Copy link

Copilot AI Apr 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description is focused on adding a GitHub Action for validating utils/new_problem.yaml, but this PR also includes unrelated changes (URL linkification logic, docs HTML regeneration, README updates, and a large problems.yaml content addition). If possible, split these into separate PRs or update the PR description to reflect the additional scope so reviewers know what to validate.

Copilot uses AI. Check for mistakes.
- "utils/new_problem.yaml"
pull_request:
paths:
- "utils/new_problem.yaml"
workflow_dispatch: # allow triggering workflow manually
inputs:
reason:
description: "Reason for Running"
required: false
default: "Manually trigger problem check"

jobs:
check_new_problems:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
Comment on lines +22 to +27
Copy link

Copilot AI Apr 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

actions/checkout@v3 and actions/setup-python@v4 are older major versions; GitHub periodically deprecates old majors. Consider upgrading to the current majors and pinning the Python version to a specific minor (instead of 3.x) for more reproducible validation behavior.

Suggested change
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'

Copilot uses AI. Check for mistakes.

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r utils/requirements.txt

- name: Run New Problem Check
run: |
python utils/validate_yaml.py utils/new_problem.yaml

215 changes: 215 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,216 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[codz]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py.cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
.pybuilder/
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
# Pipfile.lock

# UV
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
# uv.lock

# poetry
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
# poetry.lock
# poetry.toml

# pdm
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control
# pdm.lock
# pdm.toml
.pdm-python
.pdm-build/

# pixi
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
# pixi.lock
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
# in the .venv directory. It is recommended not to include this directory in version control.
.pixi

# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# Redis
*.rdb
*.aof
*.pid

# RabbitMQ
mnesia/
rabbitmq/
rabbitmq-data/

# ActiveMQ
activemq-data/

# SageMath parsed files
*.sage.py

# Environments
.env
.envrc
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/

# PyCharm
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
# .idea/

# Abstra
# Abstra is an AI-powered process automation framework.
# Ignore directories containing user credentials, local state, and settings.
# Learn more at https://abstra.io/docs
.abstra/

# Visual Studio Code
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
# and can be added to the global gitignore or merged into this file. However, if you prefer,
# you could uncomment the following to ignore the entire vscode folder
# .vscode/

# Ruff stuff:
.ruff_cache/

# PyPI configuration file
.pypirc

# Marimo
marimo/_static/
marimo/_lsp/
__marimo__/

# Streamlit
.streamlit/secrets.toml
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
Collection of optimisation problems and benchmark suites with information about high level properties like the type of decision variables, number of objectives, and the presence of constraints. Where available references to papers describing the problem and implementations are included.

## Contributing
Contributions and corrections are very welcome, through pull requests, issue reporting, or email.
Contributions and corrections are very welcome, through pull requests, issue reporting, or email.
Copy link

Copilot AI Apr 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Line has trailing whitespace after the period. Please remove it to avoid unnecessary diffs and keep Markdown formatting clean.

Suggested change
Contributions and corrections are very welcome, through pull requests, issue reporting, or email.
Contributions and corrections are very welcome, through pull requests, issue reporting, or email.

Copilot uses AI. Check for mistakes.

If you want to provide a problem/suite/generator, you can also do so via this [form](https://docs.google.com/forms/d/e/1FAIpQLSehQp24AuFAH2j9jizDhq8K_BYgNGMKXWTMu6s-2RwEJrK59Q/viewform?usp=sharing&ouid=107462254722022409950).

### Details to provide
It is often far easier for the creator of a problem/suite/generator, or someone working with it, to provide details about it than for someone new to it. Currently, the following specific details are being collected:
Expand Down
2 changes: 1 addition & 1 deletion docs/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@
<h2>OPL &ndash; Optimisation problem library</h2>

<p>
Submit problems and corrections on <a target="_blank" href="https://github.com/OpenOptimizationOrg/OPL/">GitHub</a> with pull requests / issues, or by email: <a href="mailto:koen.van.der.blom@cwi.nl" itemprop="email">koen.van.der.blom@cwi.nl</a>
Submit problems and corrections on <a target="_blank" href="https://github.com/OpenOptimizationOrg/OPL/">GitHub</a> with pull requests / issues, through the <a target="_blank" href="https://docs.google.com/forms/d/e/1FAIpQLSehQp24AuFAH2j9jizDhq8K_BYgNGMKXWTMu6s-2RwEJrK59Q/viewform">Google form</a>, or by email: <a href="mailto:koen.van.der.blom@cwi.nl" itemprop="email">koen.van.der.blom@cwi.nl</a>
</p>
Loading
Loading