Downloads:
2,991
Downloads of v 2.8.9.20241117:
36
Last Update:
31 Mar 2025
Published Date:
31 Mar 2025
Package Maintainer(s):
Software Author(s):
- IBEX Team
Tags:
ibex interval contraints contractor processing programming library c++ cpp- Software Specific:
- Software Site
- Software Source
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
IBEX
(Ready for review)
- 1
- 2
- 3
2.8.9.20241117 | Updated: 31 Mar 2025
- Software Specific:
- Software Site
- Software Source
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
2,991
Downloads of v 2.8.9.20241117:
36
Published:
31 Mar 2025
Maintainer(s):
Software Author(s):
- IBEX Team
IBEX 2.8.9.20241117
(Ready for review)
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by IBEX Team. The inclusion of IBEX Team trademark(s), if any, upon this webpage is solely to identify IBEX Team goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
This version is in moderation and has not yet been approved. This means it doesn't show up under normal search.
- Until approved, you should consider this package version unsafe - it could do very bad things to your system (it probably doesn't but you have been warned, that's why we have moderation).
- This package version can change wildly over the course of moderation until it is approved. If you install it and it later has changes to this version, you will be out of sync with any changes that have been made to the package. Until approved, you should consider that this package version doesn't even exist.
- You cannot install this package under normal scenarios. See How to install package version under moderation for more information.
- There are also no guarantees that it will be approved.
There are versions of this package awaiting moderation (possibly just this one). See the Version History section below.
IBEX is a C++ library for constraint processing over real numbers.
Quick start
- After installing Chocolatey, run
choco install -y ibex cmake make qtcreator
in PowerShell and then launch Qt Creator and choose Open Project, opentest_ibex\CMakelists.txt
(get the folder from https://www.ensta-bretagne.fr/lebars/Share/test_ibex.zip), ensure Desktop is selected and click Configure Project, wait 10 s then click on the big bottom green Run button, finally check that "My first interval:[0, 1]" appears.
Troubleshooting
- Check that all the packages and their dependencies were installed, if one failed (e.g. due to network-related errors) try to reinstall it using
--force
or try a previous version... - 32 bit versions of Qt Creator do not seem available any more, see https://github.com/AdmiringWorm/chocolatey-packages/issues/362.
- If multiple compilers are already installed, Qt Creator might show multiple possibilities in the Configure Project panel, ensure you choose one compatible with https://chocolatey.org/packages/ibex#dependencies.
Package parameters
The following package parameters can be set:
/url:URL
- Will install the specified binary package (e.g. built for Visual Studio), see versions from https://github.com/lebarsfa/ibex-lib/releases (the WindowsPATH
might need to be updated manually with e.g.C:\ProgramData\chocolatey\lib\ibex\bin
, etc.). By default, only the MinGW libraries compatible with the corresponding MinGW Chocolatey package dependency are installed. Use the standard parameterchoco install --ignore-dependencies ...
to avoid installing MinGW Chocolatey package dependency if needed./checksum:SHA256
- SHA256 checksum of the binary package specified by the/url
parameter. If needed, use the standard parameterchoco install --ignore-checksums ...
for trusted sources./urlX:URL
- Same as above, with X in [1,99], except this will not disable the installation of the MinGW libraries compatible with the corresponding MinGW Chocolatey package dependency./checksumX:SHA256
- SHA256 checksum of the binary package specified by the/urlX
parameter. If needed, use the standard parameterchoco install --ignore-checksums ...
for trusted sources./InstallDir:INSTALLDIR
- Installation directory./Path
- Will try to update WindowsPATH
./NoRegistry
- Will not try to update Windows registry.
To pass package parameters, use--params "''"
(e.g.choco install ibex --params "'/Path /NoRegistry'"
), and to install another binary package, try e.g.
choco install -y chocolatey-core.extension
choco install -y --ignore-dependencies ibex --params "'/url:https://github.com/lebarsfa/ibex-lib/releases/download/ibex-2.8.9.20241117/ibex_x64_vc17.zip'"
$ErrorActionPreference = 'Stop'; # Stop on all errors.
# Source variables which are shared between install and uninstall.
. $PSScriptRoot\sharedVars.ps1
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$pp = Get-PackageParameters
$packageDir = Join-Path "$toolsDir" ".." -Resolve
$installDir = Join-Path "$packageDir" ".." -Resolve
if ($pp.InstallDir -or $pp.InstallationPath) {
$installDir = $pp.InstallDir + $pp.InstallationPath
}
Write-Host "IBEX is going to be uninstalled from '$installDir'"
$root = Join-Path $installDir "ibex"
$newpath = [environment]::GetEnvironmentVariable("Path","Machine")
$newpath = ($newpath.Split(';') | Where-Object { $_ -ne "$root\bin" }) -join ';'
[environment]::SetEnvironmentVariable("Path",$newpath,"Machine")
try {
Get-ItemProperty -Path $CMakeSystemRepositoryPath\$CMakePackageName | Select-Object -ExpandProperty "$CMakePackageName$CMakePackageVer`_$arch" -ErrorAction Stop | Out-Null
Remove-ItemProperty -Path $CMakeSystemRepositoryPath\$CMakePackageName -Name "$CMakePackageName$CMakePackageVer`_$arch"
}
catch {
}
if (Test-Path $root) {
if ((Resolve-Path $root).Path -notcontains (Resolve-Path $packageDir).Path) {
Remove-Item -Recurse -Force $root
}
}
$ErrorActionPreference = 'Stop'; # Stop on all errors.
# Source variables which are shared between install and uninstall.
. $PSScriptRoot\sharedVars.ps1
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$pp = Get-PackageParameters
$packageDir = Join-Path "$toolsDir" ".." -Resolve
$installDir = Join-Path "$packageDir" ".." -Resolve
if ($pp.InstallDir -or $pp.InstallationPath) {
$installDir = $pp.InstallDir + $pp.InstallationPath
}
Write-Host "IBEX is going to be uninstalled from '$installDir'"
$root = Join-Path $installDir "ibex"
$newpath = [environment]::GetEnvironmentVariable("Path","Machine")
$newpath = ($newpath.Split(';') | Where-Object { $_ -ne "$root\bin" }) -join ';'
[environment]::SetEnvironmentVariable("Path",$newpath,"Machine")
try {
Get-ItemProperty -Path $CMakeSystemRepositoryPath\$CMakePackageName | Select-Object -ExpandProperty "$CMakePackageName$CMakePackageVer`_$arch" -ErrorAction Stop | Out-Null
Remove-ItemProperty -Path $CMakeSystemRepositoryPath\$CMakePackageName -Name "$CMakePackageName$CMakePackageVer`_$arch"
}
catch {
}
if (Test-Path $root) {
if ((Resolve-Path $root).Path -notcontains (Resolve-Path $packageDir).Path) {
Remove-Item -Recurse -Force $root
}
}
# Some of these variables might not be used in links to simplify parsing of files...
if ((Get-ProcessorBits 32) -or $env:ChocolateyForceX86 -eq $true) { $arch = "x86" } else { $arch = "x64" }
$MinGWMVer = "11"
$CMakeRegistryPath = "HKCU:\SOFTWARE\Kitware\CMake"
$CMakeSystemRepositoryPath = "HKLM:\SOFTWARE\Kitware\CMake\Packages"
$CMakePackageName = "Ibex"
$CMakePackageVer = "2.8.9.20241117"
Log in or click on link to see number of positives.
- ibex.2.8.9.20241117.nupkg (ef6d2326d9f5) - ## / 63
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
IBEX 2.8.9.20241117 | 36 | Monday, March 31, 2025 | Ready | |
IBEX 2.8.9.20240417 | 99 | Thursday, April 18, 2024 | Approved | |
IBEX 2.8.9.20240224 | 52 | Sunday, February 25, 2024 | Approved | |
IBEX 2.8.9.20231007 | 77 | Saturday, October 7, 2023 | Approved | |
IBEX 2.8.9.20220812 | 195 | Sunday, September 11, 2022 | Exempted | |
IBEX 2.8.9.20220413 | 1673 | Saturday, April 23, 2022 | Approved | |
IBEX 2.8.9 | 843 | Saturday, May 15, 2021 | Approved |
-
- chocolatey-core.extension (≥ 1.1.0)
- mingw (= 11.2.0.07112021)
Ground Rules:
- This discussion is only about IBEX and the IBEX package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or IBEX, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
lebarsfa (maintainer) on 30 Mar 2025 14:18:29 +00:00:
User 'lebarsfa' (maintainer) submitted package.
lebarsfa (maintainer) on 31 Mar 2025 14:03:13 +00:00:
User 'lebarsfa' (maintainer) submitted package.
lebarsfa (maintainer) on 31 Mar 2025 14:15:20 +00:00:
User 'lebarsfa' (maintainer) submitted package.
chocolatey-ops (reviewer) on 31 Mar 2025 14:46:43 +00:00:
ibex has passed automated validation. It may have or may still fail other checks like testing (verification).
NOTE: No required changes that the validator checks have been flagged! It is appreciated if you fix other items, but only Requirements will hold up a package version from approval. A human review could still turn up issues a computer may not easily find.
Guidelines
Guidelines are strong suggestions that improve the quality of a package version. These are considered something to fix for next time to increase the quality of the package. Over time Guidelines can become Requirements. A package version can be approved without addressing Guideline comments but will reduce the quality of the package.
Notes
Notes typically flag things for both you and the reviewer to go over. Sometimes this is the use of things that may or may not be necessary given the constraints of what you are trying to do and/or are harder for automation to flag for other reasons. Items found in Notes might be Requirements depending on the context. A package version can be approved without addressing Note comments.
lebarsfa (maintainer) on 31 Mar 2025 14:53:26 +00:00:
User 'lebarsfa' (maintainer) submitted package.
chocolatey-ops (reviewer) on 31 Mar 2025 15:28:42 +00:00:
ibex has passed automated validation. It may have or may still fail other checks like testing (verification).
NOTE: No required changes that the validator checks have been flagged! It is appreciated if you fix other items, but only Requirements will hold up a package version from approval. A human review could still turn up issues a computer may not easily find.
Guidelines
Guidelines are strong suggestions that improve the quality of a package version. These are considered something to fix for next time to increase the quality of the package. Over time Guidelines can become Requirements. A package version can be approved without addressing Guideline comments but will reduce the quality of the package.
chocolatey-ops (reviewer) on 31 Mar 2025 16:22:39 +00:00:
ibex has passed automated package testing (verification). The next step in the process is package scanning.
Please visit https://gist.github.com/choco-bot/cc68b70c901b705e87d5e80bcbae257d for details.
This is an FYI only. There is no action you need to take.
chocolatey-ops (reviewer) on 01 Apr 2025 10:11:47 +00:00:
ibex has passed automated virus scanning, however requires human verification.
Package Scan Status Type was Investigate.
We expected 3 file(s) to be downloaded as part of 64bit and 32bit installation, while only 1 file(s) were downloaded.
Check the virus scan results for additional information.