Skip to content

Commit

Permalink
iwyu
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph-Edwards committed Sep 17, 2024
1 parent 41f7b57 commit e8a43e2
Showing 1 changed file with 21 additions and 16 deletions.
37 changes: 21 additions & 16 deletions include/libsemigroups/word-graph.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,28 +23,33 @@
#ifndef LIBSEMIGROUPS_WORD_GRAPH_HPP_
#define LIBSEMIGROUPS_WORD_GRAPH_HPP_

#include <algorithm> // for uniform_int_distribution
#include <cstddef> // for size_t
#include <cstdint>
#include <ostream> // for operator<<
#include <queue> // for queue
#include <random> // for mt19937
#include <stack> // for stack
#include <string> // for to_string
#include <tuple> // for tie
#include <type_traits> // for is_integral, is_unsigned
#include <unordered_set> // for unordered_set
#include <utility> // for pair
#include <vector> // for vector

#include "config.hpp" // for LIBSEMIGROUPS_EIGEN_EN...
#include <algorithm> // for uniform_int_distribution
#include <cstddef> // for size_t
#include <cstdint> // for uint64_t
#include <initializer_list> // for initializer_list
#include <iterator> // for pair
#include <numeric> // for iota
#include <ostream> // for ostream, operator<<
#include <queue> // for queue
#include <random> // for random_device, mt19937
#include <stack> // for stack
#include <string> // for allocator, string, basic_string
#include <tuple> // for tie
#include <type_traits> // for enable_if_t, decay_t, is_integral
#include <unordered_map> // for hash, unordered_map
#include <unordered_set> // for unordered_set
#include <utility> // for pair, forward
#include <vector> // for vector

#include "adapters.hpp" // for Hash
#include "config.hpp" // for LIBSEMIGROUPS_EIGEN_ENABLED
#include "constants.hpp" // for UNDEFINED
#include "debug.hpp" // for LIBSEMIGROUPS_ASSERT
#include "dot.hpp" // for Dot
#include "exception.hpp" // for LIBSEMIGROUPS_EXCEPTION
#include "forest.hpp" // for Forest
#include "order.hpp" // for Order
#include "ranges.hpp" // for ??
#include "ranges.hpp" // for or iterator_range, seq, take
#include "types.hpp" // for word_type

#include "detail/containers.hpp" // for DynamicArray2
Expand Down

0 comments on commit e8a43e2

Please sign in to comment.