Downloads:
1,573
Downloads of v 1.5.7:
1
Last Update:
30 Mar 2025
Published Date:
30 Mar 2025
Package Maintainer(s):
Software Author(s):
- Codac Team
Tags:
codac tube 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
Codac
(Waiting on dependencies)
The package has been suspended from automatic moderation due to unsatisfied dependencies. Moderation for this package will continue once all dependencies that satisfy the version range have been approved or exempted.
- 1
- 2
- 3
1.5.7 | Updated: 30 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:
1,573
Downloads of v 1.5.7:
1
Published:
30 Mar 2025
Software Author(s):
- Codac Team
Codac 1.5.7
(Waiting on dependencies)
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Codac Team. The inclusion of Codac Team trademark(s), if any, upon this webpage is solely to identify Codac Team goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Pending
3 Pending Tests
Validation Testing Pending
Verification Testing Pending
Scan Testing Pending
The package has been suspended from automatic moderation due to unsatisfied dependencies. Moderation for this package will continue once all dependencies that satisfy the version range have been approved or exempted.
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.
Codac is a library providing tools for constraint programming over reals, trajectories and sets.
Quick start
- After installing Chocolatey, run
choco install -y codac cmake make qtcreator
in PowerShell and then launch Qt Creator and choose Open Project, opentest_codac\CMakelists.txt
(get the folder from https://www.ensta-bretagne.fr/lebars/Share/test_codac.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 tube:Tube [0, 10]" appears. - Optionally, download and run https://github.com/ENSTABretagneRobotics/VIBES/releases/download/0.2.3/VIBes-0.2.3-win32.exe before running the project, and check that a tube appears in VIBes window.
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/codac#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/codac-team/codac/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 the default MinGW and IBEX Chocolatey package dependencies if needed (you might want to install manually IBEX package with the corresponding parameters, as well as the corresponding compiler and the Eigen package)./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 codac --params "'/Path /NoRegistry'"
), and to install another binary package, try e.g.
choco install -y chocolatey-core.extension
choco install -y --ignore-dependencies codac --params "'/url:https://github.com/codac-team/codac/releases/download/v1.5.7/codac_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 "Codac is going to be uninstalled from '$installDir'"
$root = Join-Path $installDir "codac"
$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 "Codac is going to be uninstalled from '$installDir'"
$root = Join-Path $installDir "codac"
$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 = "Codac"
$CMakePackageVer = "1.5.7"
No results available for this package. We are building up results for older packages over time so expect to see results. If this is a new package, it should have results within a day or two.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Codac 1.5.7 | 1 | Sunday, March 30, 2025 | Waiting on dependencies | |
Codac 1.5.6 | 75 | Thursday, April 11, 2024 | Approved | |
Codac 1.5.2 | 68 | Monday, October 16, 2023 | Approved | |
Codac 1.4.6 | 53 | Saturday, October 7, 2023 | Approved | |
Codac 1.2.1 | 111 | Sunday, May 28, 2023 | Approved | |
Codac 1.2.0 | 178 | Wednesday, June 8, 2022 | Approved | |
Codac 1.1.0 | 125 | Wednesday, May 18, 2022 | Approved | |
Codac 1.0.0 | 165 | Tuesday, April 26, 2022 | Approved | |
Codac 0.1.13 | 97 | Wednesday, April 13, 2022 | Approved | |
Codac 0.1.7 | 147 | Friday, November 5, 2021 | Approved | |
Codac 0.1.6 | 153 | Wednesday, August 25, 2021 | Approved | |
Codac 0.1.5 | 125 | Thursday, August 19, 2021 | Approved | |
Codac 0.1.4 | 101 | Thursday, August 19, 2021 | Approved | |
Codac 0.1.3 | 135 | Saturday, May 15, 2021 | Approved |
-
- chocolatey-core.extension (≥ 1.1.0)
- mingw (= 11.2.0.7112021)
- eigen (≥ 3.3.4.20210818)
- ibex (≥ 2.8.9.20230510)
Ground Rules:
- This discussion is only about Codac and the Codac 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 Codac, 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:42 +00:00:
User 'lebarsfa' (maintainer) submitted package.