cleaning up includes and a couple comments

This commit is contained in:
Benji Dial 2023-06-21 08:31:07 -04:00
parent 1940ef1305
commit 04b25f18f4
8 changed files with 10 additions and 11 deletions

View file

@ -1,8 +1,10 @@
#ifndef LIB94_BENCH_BENCH_WINDOW_HPP
#define LIB94_BENCH_BENCH_WINDOW_HPP
#include <lib94/lib94.hpp>
#include <gtkmm.h>
#include <thread>
#include <set>
#include "core_widget.hpp"

View file

@ -3,6 +3,8 @@
#include <lib94/lib94.hpp>
#include <gtkmm.h>
#include <mutex>
#include <set>
class core_widget : public Gtk::Widget {
public:

View file

@ -1,11 +1,9 @@
#ifndef LIB94_LIB94_HPP
#define LIB94_LIB94_HPP
#include <filesystem>
#include <optional>
#include <variant>
#include <cstdint>
#include <string>
#include <random>
#include <vector>
#include <deque>
#include <set>

View file

@ -1,9 +1,8 @@
#include <lib94/lib94.hpp>
#include <functional>
#include <algorithm>
#include <cassert>
#include <random>
#include <deque>
#include <set>
namespace lib94 {
@ -70,7 +69,7 @@ namespace lib94 {
new_place_at:
number_t place_at = i == 0 ? 0 : number(prng);
for (std::pair<number_t, number_t> &other : placements)
for (const std::pair<number_t, number_t> &other : placements)
//there has to be a better way
for (number_t i = 0; i < (number_t)w->instructions.size(); ++i)
if (((place_at + i) % LIB94_CORE_SIZE >= other.first && (place_at + i) % LIB94_CORE_SIZE < other.first + other.second) ||

View file

@ -2,8 +2,6 @@
#include <functional>
#include <cassert>
#include <cstdio>
namespace lib94 {
void enqueue_process(number_t pc);

View file

@ -3,7 +3,6 @@
#include <cassert>
#include <fstream>
#include <cctype>
#include <cstdio>
#include <memory>
#include <map>
@ -78,7 +77,7 @@ namespace lib94 {
unsigned source_line_number;
};
//internal stage used by stage 1. also records the name and author outputs.
//internal state used by stage 1. also records some information passed to later stages.
struct preprocessor_state {
std::optional<std::string> name;
std::optional<std::string> author;
@ -515,6 +514,7 @@ namespace lib94 {
}
//some information collected in stage 2
struct parser_state {
label_offset_set label_offsets;
std::unique_ptr<expr> org_expr;

View file

@ -1,5 +1,4 @@
#include <lib94/lib94.hpp>
#include <csignal>
#include <cstdio>
#include <mpi.h>

View file

@ -1,4 +1,5 @@
#include <lib94/lib94.hpp>
#include <ctime>
#include <mpi.h>
#include "constants.hpp"