python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
z3 much slower than ortools SAT. Why?
I am trying out different solvers for a toy clique problem and was surprised to find that ortools using SAT seems much faster than z3. I am wondering if I am doing something wrong given that z3 does s...
Simd
Votes: 0
Answers: 2
OR-Tools (CP-SAT) - How to implement a non-linear function
I'm attempting to use Google's OR-Tools to produce a distance constraint between 2x 2D points (p0 & p1).
This becomes the non-linear expression:
(p1x - p0x)² + (p1y - p0y)² = d²
I have attempted t...
Max Peglar-Willis
Votes: 0
Answers: 1
How to bundle pairs of trips?
I have a database of optional real-time trip demands. Each with a load that can to be delivered from a departure point to a destination:
ID,EndDateEnd,EndDateStart,StartDateEnd,StartDateStart,DepX,Dep...
dank
Votes: 0
Answers: 1
VRP with OR-Tools: How to prioritize which vehicles get routes when solution includes empty routes?
I'm using OR-Tools' VRP solver (in Python) to schedule vehicle routes for the following problem:
There is a list of customer locations that must be visited within a given week (Mon-Sun), but we don't ...
Aaron Dunigan AtLee
Votes: 0
Answers: 1