You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: java/bed-allocation/README.md
+14-27Lines changed: 14 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,6 @@ Assign beds to patient stays to produce a better schedule for hospitals.
22
22
| Preferred patient equipment | Soft | Penalize when a patient's preferred equipment is not available in the assigned room. |
23
23
24
24
-[Run the application](#run-the-application)
25
-
-[Run the application with Enterprise Edition](#run-the-application-with-enterprise-edition)
26
25
-[Run the packaged application](#run-the-packaged-application)
27
26
-[Run the application in a container](#run-the-application-in-a-container)
28
27
-[Run it native](#run-it-native)
@@ -46,37 +45,25 @@ Assign beds to patient stays to produce a better schedule for hospitals.
46
45
$ cd timefold-quickstarts/java/bed-allocation
47
46
```
48
47
49
-
2.Start the application with Maven:
48
+
2.(Optional) If you want to run a licensed edition (Plus / Enterprise), set up your license key first. See the [Timefold license tool](https://licenses.timefold.ai/) for instructions.
50
49
51
-
```sh
52
-
$ mvn quarkus:dev
53
-
```
54
-
55
-
3. Visit [http://localhost:8080](http://localhost:8080) in your browser.
56
-
57
-
4. Click on the **Solve** button.
50
+
3. Start the application with Maven:
58
51
59
-
Then try _live coding_:
52
+
1. Community Edition
53
+
54
+
```sh
55
+
$ mvn quarkus:dev
56
+
```
57
+
58
+
2. Plus / Enterprise Edition: The profile sets up the correct Maven artifacts to run the licensed version. See the `pom.xml`for the implementation details.
60
59
61
-
- Make some changes in the source code.
62
-
- Refresh your browser (F5).
60
+
```sh
61
+
$ mvn quarkus:dev -Denterprise
62
+
```
63
63
64
-
Notice that those changes are immediately in effect.
65
-
66
-
## Run the application with Enterprise Edition
67
-
68
-
For high-scalability use cases, switch to [Timefold Solver Enterprise Edition](https://docs.timefold.ai/timefold-solver/latest/commercial-editions/commercial-editions), our commercial offering.
69
-
Find the right [Timefold Solver edition](https://licenses.timefold.ai/) for your use case.
70
-
71
-
1. Start the application with Maven:
72
-
73
-
```sh
74
-
$ mvn clean quarkus:dev -Denterprise
75
-
```
76
-
77
-
2. Visit [http://localhost:8080](http://localhost:8080) in your browser.
64
+
4. Visit [http://localhost:8080](http://localhost:8080) in your browser.
Copy file name to clipboardExpand all lines: java/conference-scheduling/README.md
+14-27Lines changed: 14 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,6 @@ Assign conference talks to timeslots and rooms to produce a better schedule for
46
46
| Speaker makespan | Soft | Minimize the scheduling span for each speaker. |
47
47
48
48
-[Run the application](#run-the-application)
49
-
-[Run the application with Enterprise Edition](#run-the-application-with-enterprise-edition)
50
49
-[Run the packaged application](#run-the-packaged-application)
51
50
-[Run the application in a container](#run-the-application-in-a-container)
52
51
-[Run it native](#run-it-native)
@@ -70,37 +69,25 @@ Assign conference talks to timeslots and rooms to produce a better schedule for
70
69
$ cd timefold-quickstarts/java/conference-scheduling
71
70
```
72
71
73
-
2.Start the application with Maven:
72
+
2.(Optional) If you want to run a licensed edition (Plus / Enterprise), set up your license key first. See the [Timefold license tool](https://licenses.timefold.ai/) for instructions.
74
73
75
-
```sh
76
-
$ mvn quarkus:dev
77
-
```
78
-
79
-
3. Visit [http://localhost:8080](http://localhost:8080) in your browser.
80
-
81
-
4. Click on the **Solve** button.
74
+
3. Start the application with Maven:
82
75
83
-
Then try _live coding_:
76
+
1. Community Edition
77
+
78
+
```sh
79
+
$ mvn quarkus:dev
80
+
```
81
+
82
+
2. Plus / Enterprise Edition: The profile sets up the correct Maven artifacts to run the licensed version. See the `pom.xml`for the implementation details.
84
83
85
-
- Make some changes in the source code.
86
-
- Refresh your browser (F5).
84
+
```sh
85
+
$ mvn quarkus:dev -Denterprise
86
+
```
87
87
88
-
Notice that those changes are immediately in effect.
89
-
90
-
## Run the application with Enterprise Edition
91
-
92
-
For high-scalability use cases, switch to [Timefold Solver Enterprise Edition](https://docs.timefold.ai/timefold-solver/latest/commercial-editions/commercial-editions), our commercial offering.
93
-
Find the right [Timefold Solver edition](https://licenses.timefold.ai/) for your use case.
94
-
95
-
1. Start the application with Maven:
96
-
97
-
```sh
98
-
$ mvn clean quarkus:dev -Denterprise
99
-
```
100
-
101
-
2. Visit [http://localhost:8080](http://localhost:8080) in your browser.
88
+
4. Visit [http://localhost:8080](http://localhost:8080) in your browser.
Copy file name to clipboardExpand all lines: java/employee-scheduling/README.md
+14-27Lines changed: 14 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,6 @@ Schedule shifts to employees, accounting for employee availability and shift ski
18
18
| Balance employee shift assignments | Soft | Fairly distribute shifts across all employees. |
19
19
20
20
-[Run the application](#run-the-application)
21
-
-[Run the application with Enterprise Edition](#run-the-application-with-enterprise-edition)
22
21
-[Run the packaged application](#run-the-packaged-application)
23
22
-[Run the application in a container](#run-the-application-in-a-container)
24
23
-[Run it native](#run-it-native)
@@ -45,37 +44,25 @@ Schedule shifts to employees, accounting for employee availability and shift ski
45
44
$ cd timefold-quickstarts/java/employee-scheduling
46
45
```
47
46
48
-
2.Start the application with Maven:
47
+
2.(Optional) If you want to run a licensed edition (Plus / Enterprise), set up your license key first. See the [Timefold license tool](https://licenses.timefold.ai/) for instructions.
49
48
50
-
```sh
51
-
$ mvn quarkus:dev
52
-
```
53
-
54
-
3. Visit [http://localhost:8080](http://localhost:8080) in your browser.
55
-
56
-
4. Click on the **Solve** button.
49
+
3. Start the application with Maven:
57
50
58
-
Then try _live coding_:
51
+
1. Community Edition
52
+
53
+
```sh
54
+
$ mvn quarkus:dev
55
+
```
56
+
57
+
2. Plus / Enterprise Edition: The profile sets up the correct Maven artifacts to run the licensed version. See the `pom.xml`for the implementation details.
59
58
60
-
- Make some changes in the source code.
61
-
- Refresh your browser (F5).
59
+
```sh
60
+
$ mvn quarkus:dev -Denterprise
61
+
```
62
62
63
-
Notice that those changes are immediately in effect.
64
-
65
-
## Run the application with Enterprise Edition
66
-
67
-
For high-scalability use cases, switch to [Timefold Solver Enterprise Edition](https://docs.timefold.ai/timefold-solver/latest/commercial-editions/commercial-editions), our commercial offering.
68
-
Find the right [Timefold Solver edition](https://licenses.timefold.ai/) for your use case.
69
-
70
-
1. Start the application with Maven:
71
-
72
-
```sh
73
-
$ mvn clean quarkus:dev -Denterprise
74
-
```
75
-
76
-
2. Visit [http://localhost:8080](http://localhost:8080) in your browser.
63
+
4. Visit [http://localhost:8080](http://localhost:8080) in your browser.
Copy file name to clipboardExpand all lines: java/facility-location/README.md
+14-27Lines changed: 14 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,6 @@ Pick the best geographical locations for new stores, distribution centers, covid
13
13
| Distance from facility | Soft | Minimize the total distance from consumers to their assigned facility. |
14
14
15
15
-[Run the application](#run-the-application)
16
-
-[Run the application with Enterprise Edition](#run-the-application-with-enterprise-edition)
17
16
-[Run the packaged application](#run-the-packaged-application)
18
17
-[Run the application in a container](#run-the-application-in-a-container)
19
18
-[Run it native](#run-it-native)
@@ -37,37 +36,25 @@ Pick the best geographical locations for new stores, distribution centers, covid
37
36
$ cd timefold-quickstarts/java/facility-location
38
37
```
39
38
40
-
2.Start the application with Maven:
39
+
2.(Optional) If you want to run a licensed edition (Plus / Enterprise), set up your license key first. See the [Timefold license tool](https://licenses.timefold.ai/) for instructions.
41
40
42
-
```sh
43
-
$ mvn quarkus:dev
44
-
```
45
-
46
-
3. Visit [http://localhost:8080](http://localhost:8080) in your browser.
47
-
48
-
4. Click on the **Solve** button.
41
+
3. Start the application with Maven:
49
42
50
-
Then try _live coding_:
43
+
1. Community Edition
44
+
45
+
```sh
46
+
$ mvn quarkus:dev
47
+
```
48
+
49
+
2. Plus / Enterprise Edition: The profile sets up the correct Maven artifacts to run the licensed version. See the `pom.xml`for the implementation details.
51
50
52
-
- Make some changes in the source code.
53
-
- Refresh your browser (F5).
51
+
```sh
52
+
$ mvn quarkus:dev -Denterprise
53
+
```
54
54
55
-
Notice that those changes are immediately in effect.
56
-
57
-
## Run the application with Enterprise Edition
58
-
59
-
For high-scalability use cases, switch to [Timefold Solver Enterprise Edition](https://docs.timefold.ai/timefold-solver/latest/commercial-editions/commercial-editions), our commercial offering.
60
-
Find the right [Timefold Solver edition](https://licenses.timefold.ai/) for your use case.
61
-
62
-
1. Start the application with Maven:
63
-
64
-
```sh
65
-
$ mvn clean quarkus:dev -Denterprise
66
-
```
67
-
68
-
2. Visit [http://localhost:8080](http://localhost:8080) in your browser.
55
+
4. Visit [http://localhost:8080](http://localhost:8080) in your browser.
Copy file name to clipboardExpand all lines: java/flight-crew-scheduling/README.md
+14-27Lines changed: 14 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,6 @@ Assign crew to flights to produce a better schedule for flight assignments.
16
16
| Last assignment not arriving at home | Soft | The last flight assignment should arrive at the crew member's home airport. |
17
17
18
18
-[Run the application](#run-the-application)
19
-
-[Run the application with Enterprise Edition](#run-the-application-with-enterprise-edition)
20
19
-[Run the packaged application](#run-the-packaged-application)
21
20
-[Run the application in a container](#run-the-application-in-a-container)
22
21
-[Run it native](#run-it-native)
@@ -40,37 +39,25 @@ Assign crew to flights to produce a better schedule for flight assignments.
40
39
$ cd timefold-quickstarts/java/flight-crew-scheduling
41
40
```
42
41
43
-
2.Start the application with Maven:
42
+
2.(Optional) If you want to run a licensed edition (Plus / Enterprise), set up your license key first. See the [Timefold license tool](https://licenses.timefold.ai/) for instructions.
44
43
45
-
```sh
46
-
$ mvn quarkus:dev
47
-
```
48
-
49
-
3. Visit [http://localhost:8080](http://localhost:8080) in your browser.
50
-
51
-
4. Click on the **Solve** button.
44
+
3. Start the application with Maven:
52
45
53
-
Then try _live coding_:
46
+
1. Community Edition
47
+
48
+
```sh
49
+
$ mvn quarkus:dev
50
+
```
51
+
52
+
2. Plus / Enterprise Edition: The profile sets up the correct Maven artifacts to run the licensed version. See the `pom.xml`for the implementation details.
54
53
55
-
- Make some changes in the source code.
56
-
- Refresh your browser (F5).
54
+
```sh
55
+
$ mvn quarkus:dev -Denterprise
56
+
```
57
57
58
-
Notice that those changes are immediately in effect.
59
-
60
-
## Run the application with Enterprise Edition
61
-
62
-
For high-scalability use cases, switch to [Timefold Solver Enterprise Edition](https://docs.timefold.ai/timefold-solver/latest/commercial-editions/commercial-editions), our commercial offering.
63
-
Find the right [Timefold Solver edition](https://licenses.timefold.ai/) for your use case.
64
-
65
-
1. Start the application with Maven:
66
-
67
-
```sh
68
-
$ mvn clean quarkus:dev -Denterprise
69
-
```
70
-
71
-
2. Visit [http://localhost:8080](http://localhost:8080) in your browser.
58
+
4. Visit [http://localhost:8080](http://localhost:8080) in your browser.
Copy file name to clipboardExpand all lines: java/food-packaging/README.md
+14-27Lines changed: 14 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,6 @@ Schedule food packaging orders to manufacturing lines, to minimize downtime and
15
15
| Minimize makespan | Soft | Minimize the total production time. |
16
16
17
17
-[Run the application](#run-the-application)
18
-
-[Run the application with Enterprise Edition](#run-the-application-with-enterprise-edition)
19
18
-[Run the packaged application](#run-the-packaged-application)
20
19
-[Run the application in a container](#run-the-application-in-a-container)
21
20
-[Run it native](#run-it-native)
@@ -39,37 +38,25 @@ Schedule food packaging orders to manufacturing lines, to minimize downtime and
39
38
$ cd timefold-quickstarts/java/food-packaging
40
39
```
41
40
42
-
2.Start the application with Maven:
41
+
2.(Optional) If you want to run a licensed edition (Plus / Enterprise), set up your license key first. See the [Timefold license tool](https://licenses.timefold.ai/) for instructions.
43
42
44
-
```sh
45
-
$ mvn quarkus:dev
46
-
```
47
-
48
-
3. Visit [http://localhost:8080](http://localhost:8080) in your browser.
49
-
50
-
4. Click on the **Solve** button.
43
+
3. Start the application with Maven:
51
44
52
-
Then try _live coding_:
45
+
1. Community Edition
46
+
47
+
```sh
48
+
$ mvn quarkus:dev
49
+
```
50
+
51
+
2. Plus / Enterprise Edition: The profile sets up the correct Maven artifacts to run the licensed version. See the `pom.xml`for the implementation details.
53
52
54
-
- Make some changes in the source code.
55
-
- Refresh your browser (F5).
53
+
```sh
54
+
$ mvn quarkus:dev -Denterprise
55
+
```
56
56
57
-
Notice that those changes are immediately in effect.
58
-
59
-
## Run the application with Enterprise Edition
60
-
61
-
For high-scalability use cases, switch to [Timefold Solver Enterprise Edition](https://docs.timefold.ai/timefold-solver/latest/commercial-editions/commercial-editions), our commercial offering.
62
-
Find the right [Timefold Solver edition](https://licenses.timefold.ai/) for your use case.
63
-
64
-
1. Start the application with Maven:
65
-
66
-
```sh
67
-
$ mvn clean quarkus:dev -Denterprise
68
-
```
69
-
70
-
2. Visit [http://localhost:8080](http://localhost:8080) in your browser.
57
+
4. Visit [http://localhost:8080](http://localhost:8080) in your browser.
0 commit comments