Skip to content

Commit

Permalink
iwyu
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph-Edwards committed Aug 21, 2024
1 parent 90a574a commit c60487c
Showing 1 changed file with 17 additions and 10 deletions.
27 changes: 17 additions & 10 deletions include/libsemigroups/matrix.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,23 @@
#ifndef LIBSEMIGROUPS_MATRIX_HPP_
#define LIBSEMIGROUPS_MATRIX_HPP_

#include <algorithm> // for min
#include <array> // for array
#include <bitset> // for bitset
#include <cstddef> // for size_t
#include <iosfwd> // for ostringstream
#include <numeric> // for inner_product
#include <type_traits> // for false_type, is_signed, true_type
#include <unordered_map> // for unordered_map
#include <unordered_set> // for unordered_set
#include <vector> // for vector
#include <algorithm> // for min
#include <array> // for array
#include <bitset> // for bitset
#include <cstddef> // for size_t
#include <cstdint> // for uint64_t
#include <initializer_list> // for initializer_list
#include <iosfwd> // for ostringstream
#include <iterator> // for distance
#include <numeric> // for inner_product
#include <ostream> // for operator<<, basic_ostream
#include <string> // for string
#include <tuple> // for tie
#include <type_traits> // for false_type, is_signed, true_type
#include <unordered_map> // for unordered_map
#include <unordered_set> // for unordered_set
#include <utility> // for forward, make_pair, pair
#include <vector> // for vector

#include "adapters.hpp" // for Degree
#include "bitset.hpp" // for BitSet
Expand Down

0 comments on commit c60487c

Please sign in to comment.