Bjorn Madsen
Bjorn Madsen
Description: Cluster analysis (https://en.wikipedia.org/wiki/Cluster_analysis)
Here's a list: - Assignment problems (AP) - Explain that AP is special case of GAP with just one agent. - Explain why the hungarian algorithm is subperformant relative to...
- Scheduling - employee scheduling problem (https://en.wikipedia.org/wiki/Nurse_scheduling_problem) - job shop scheduling problem - load planning problem
Implementation is requested of [VRP](https://en.wikipedia.org/wiki/Vehicle_routing_problem): 
https://en.wikipedia.org/wiki/Transshipment_problem
Check if this could belong in examples. @04t02 ``` from collections import defaultdict from graph import Graph def calculate_max_traffic(graph, unit_quantities): max_traffic = defaultdict(int) for in_node, out_nodes in unit_quantities.items(): for out_node,...
Minimal illustration of the problem  (classic graph vs multi-graph) Assume G is a binary tree with a root and 2 levels if bifurcation resulting in $2^{2}$ leaves with randomized...
java.lang.ArrayIndexOutOfBoundsException: -1 at java.util.ArrayList.elementData(ArrayList.java:418) at java.util.ArrayList.get(ArrayList.java:431) at com.intellij.openapi.diff.impl.patch.apply.GenericPatchApplier$FragmentMatcher.a(GenericPatchApplier.java:1037) at com.intellij.openapi.diff.impl.patch.apply.GenericPatchApplier$FragmentMatcher.find(GenericPatchApplier.java:980) at com.intellij.openapi.diff.impl.patch.apply.GenericPatchApplier.a(GenericPatchApplier.java:918) at com.intellij.openapi.diff.impl.patch.apply.GenericPatchApplier.execute(GenericPatchApplier.java:144) at org.github.irengrig.fossil4idea.local.DiffUtil.execute(DiffUtil.java:32) at org.github.irengrig.fossil4idea.local.LocalUtil$LineParser.getDiffedChanges(LocalUtil.java:242) at org.github.irengrig.fossil4idea.local.LocalUtil.reportChanges(LocalUtil.java:41) at org.github.irengrig.fossil4idea.local.FossilChangeProvider.getChanges(FossilChangeProvider.java:52) at com.intellij.openapi.vcs.changes.ChangeListManagerImpl.a(ChangeListManagerImpl.java:690) at com.intellij.openapi.vcs.changes.ChangeListManagerImpl.b(ChangeListManagerImpl.java:604) at com.intellij.openapi.vcs.changes.ChangeListManagerImpl.a(ChangeListManagerImpl.java:491) at com.intellij.openapi.progress.impl.CoreProgressManager$3.run(CoreProgressManager.java:179)...
-1 java.lang.ArrayIndexOutOfBoundsException: -1 at java.util.ArrayList.elementData(ArrayList.java:418) at java.util.ArrayList.get(ArrayList.java:431) at com.intellij.openapi.diff.impl.patch.apply.GenericPatchApplier$FragmentMatcher.a(GenericPatchApplier.java:1029) at com.intellij.openapi.diff.impl.patch.apply.GenericPatchApplier$FragmentMatcher.find(GenericPatchApplier.java:972) at com.intellij.openapi.diff.impl.patch.apply.GenericPatchApplier.a(GenericPatchApplier.java:910) at com.intellij.openapi.diff.impl.patch.apply.GenericPatchApplier.execute(GenericPatchApplier.java:142) at org.github.irengrig.fossil4idea.local.DiffUtil.execute(DiffUtil.java:32) at org.github.irengrig.fossil4idea.local.LocalUtil$LineParser.getDiffedChanges(LocalUtil.java:242) at org.github.irengrig.fossil4idea.local.LocalUtil.reportChanges(LocalUtil.java:41) at org.github.irengrig.fossil4idea.local.FossilChangeProvider.getChanges(FossilChangeProvider.java:52) at com.intellij.openapi.vcs.changes.ChangeListManagerImpl.a(ChangeListManagerImpl.java:768) at com.intellij.openapi.vcs.changes.ChangeListManagerImpl.a(ChangeListManagerImpl.java:682) at com.intellij.openapi.vcs.changes.ChangeListManagerImpl.access$1800(ChangeListManagerImpl.java:71) at...
@realratchet : In commit: https://github.com/root-11/tablite/commit/aee872b021e4870fe99af4f7479ac94eb6539b9a in line [452](https://github.com/root-11/tablite/blob/ef23744f14b840a6b5f3d007b40d389746cba927/tablite/joins.py#L452): """ Ratchet: I thought real good about it and it is not possible to mapping tasks be multi-processed/constant memory, because every slice...