wiki_research

personal research wiki
git clone https://a3nm.net/git/wiki_research/
Log | Files | Refs

set_cover (274B)


      1 # Set cover
      2 
      3 Given a universe [set], and a collection of [subsets] whose [union] is the universe, find a subcollection with [minimum] [cardinality] whose [union] is equal to the universe
      4 
      5 [set_cover_problem]
      6 
      7 See also: [hitting_set], [vertex_cover], [edge_cover]
      8 
      9 Up: [set]