You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
Required fields*
-
$\begingroup$ How long did the solver take for this one? $\endgroup$justhalf– justhalf2025-02-22 05:49:39 +00:00Commented Feb 22, 2025 at 5:49
-
$\begingroup$ @justhalf Not sure how long it would have taken to solve directly. I got impatient and wanted to see some progress, so I changed from a feasibility problem to an optimization problem by adding a binary slack variable $s_{ij}$ to \eqref{1}, relaxing \eqref{2} from $=$ to $\le$, and minimizing the infeasibility $\sum s_{ij}$. This got down to objective value $4$ (one small T missing) but then stalled. To finish things off, I performed a local search by fixing the variables for two of the ten types at a time, and solving over the rest. Took a few hours (maybe longer than solving directly). $\endgroup$RobPratt– RobPratt2025-02-22 14:08:26 +00:00Commented Feb 22, 2025 at 14:08
-
1$\begingroup$ ah, interesting. Thanks for sharing the details and some tricks, Rob. $\endgroup$justhalf– justhalf2025-02-22 14:10:02 +00:00Commented Feb 22, 2025 at 14:10
-
1$\begingroup$ For comparison, my 'slightly sharpened sledgehammer' approach which is simple backtracking with a beam search aided by scoring heuristic took 248.5 hours $\endgroup$theonetruepath– theonetruepath2025-02-23 02:01:24 +00:00Commented Feb 23, 2025 at 2:01
-
1$\begingroup$ @RobPratt it's taken me rather longer, but I finally solved it too. $\endgroup$Weather Vane– Weather Vane2025-03-05 12:47:57 +00:00Commented Mar 5, 2025 at 12:47
Add a comment
|
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
- mark spoilers by placing >! at start of line
-
create code fences with backticks ` or tildes ~
```
like so
``` -
add language identifier to highlight code
```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- quote by placing > at start of line
- to make links (use https whenever possible)
<https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
- MathJax equations
$\sin^2 \theta$
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. logical-deduction), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you