index.rst 603 B

123456789101112131415
  1. Unconstrained Binary Quadratic Programming
  2. ==========================================
  3. Given a collection of :math:`n` items such that each pair of items is associated with a profit value that can be positive, negative or zero, unconstrained binary quadratic programming (UBQP) seeks a subset of items that maximizes the sum of their paired values. The value of a pair is accumulated in the sum only if the two corresponding items are selected.
  4. The UBQP problem will be tackle in this example.
  5. .. toctree::
  6. :maxdepth: 1
  7. :numbered:
  8. :caption: Contents:
  9. problem
  10. instance
  11. implementation