lib/graph_matching.rb
# frozen_string_literal: true
require 'graph_matching/core_ext/set'
require 'graph_matching/graph/graph'
require 'graph_matching/graph/bigraph'
require 'graph_matching/graph/weighted_graph'
require 'graph_matching/graph/weighted_bigraph'
require 'graph_matching/errors'
require 'graph_matching/version'
require 'graph_matching/visualize'
# Efficient algorithms for maximum cardinality and weighted
# matchings in undirected graphs.
module GraphMatching
end