Skip to content
Snippets Groups Projects
Commit 00befa42 authored by Simon de Givry's avatar Simon de Givry
Browse files

Merge branch 'master' of https://github.com/toulbar2/toulbar2

parents 8e919edf 25d699d2
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@ Brief description (from `CSPLib Problem 61 <https://www.csplib.org/Problems/prob
A number of activities are to be scheduled within a discrete time horizon. Each activity has a duration (integer) and cannot be interrupted.
There are a set of precedence relations between pairs of activities which state that the second activity must start after the first has finished.
There is a set of precedence relations between pairs of activities which state that the second activity must start after the first has finished.
There are a set of renewable resources. Each resource has a maximum capacity (integer) and at any given time slot no more than this amount can be in use. Each activity has a demand (integer possibly zero) on each resource.
......@@ -26,7 +26,7 @@ Hard binary constraints represent that an activity must be finished before anoth
For each time slot and each resource, we add a generalized linear constraint on all the activities having a non-zero demand such that the interval defined by its starting time and duration includes the given time slot.
A soft unary cost function represent the makespan on the last activity (which is assumed to have a zero duration).
A soft unary cost function represents the makespan on the last activity (which is assumed to have a zero duration).
Data
====
......
......@@ -75,7 +75,7 @@ def read_version():
setup(
name="pytoulbar2",
version="0.0.0.4", # hash c9d8388a41bdbcea4a5a1f8e860213fe5d9eda8a
version="0.0.0.4", # hash 697fe0b32d27f0103c39266a3e2fb9d168bc12b1
author="ToulBar2 team",
author_email="thomas.schiex@inrae.fr",
description="ToulBar2 Python package",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment