mirror of
https://github.com/TomHarte/CLK.git
synced 2026-04-25 11:17:26 +00:00
Renames: NumberTheory -> Numeric.
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
|
||||
#include "DiskController.hpp"
|
||||
|
||||
#include "../../../NumberTheory/Factors.hpp"
|
||||
#include "../../../Numeric/Factors.hpp"
|
||||
|
||||
using namespace Storage::Disk;
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
#define MFMDiskController_hpp
|
||||
|
||||
#include "DiskController.hpp"
|
||||
#include "../../../NumberTheory/CRC.hpp"
|
||||
#include "../../../Numeric/CRC.hpp"
|
||||
#include "../../../ClockReceiver/ClockReceiver.hpp"
|
||||
#include "../Encodings/MFM/Shifter.hpp"
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
#include "../DiskImage.hpp"
|
||||
#include "../../../FileHolder.hpp"
|
||||
#include "../../../../NumberTheory/CRC.hpp"
|
||||
#include "../../../../Numeric/CRC.hpp"
|
||||
|
||||
#include <string>
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
#include "Constants.hpp"
|
||||
#include "../../Track/PCMTrack.hpp"
|
||||
#include "../../../../NumberTheory/CRC.hpp"
|
||||
#include "../../../../Numeric/CRC.hpp"
|
||||
|
||||
#include <cassert>
|
||||
#include <set>
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
|
||||
#include "Sector.hpp"
|
||||
#include "../../Track/Track.hpp"
|
||||
#include "../../../../NumberTheory/CRC.hpp"
|
||||
#include "../../../../Numeric/CRC.hpp"
|
||||
|
||||
namespace Storage {
|
||||
namespace Encodings {
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
#include <cstdint>
|
||||
#include <memory>
|
||||
#include "../../../../NumberTheory/CRC.hpp"
|
||||
#include "../../../../Numeric/CRC.hpp"
|
||||
|
||||
namespace Storage {
|
||||
namespace Encodings {
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
#include <vector>
|
||||
|
||||
#include "../../Storage.hpp"
|
||||
#include "../../../NumberTheory/LFSR.hpp"
|
||||
#include "../../../Numeric/LFSR.hpp"
|
||||
#include "Track.hpp"
|
||||
|
||||
namespace Storage {
|
||||
@@ -200,7 +200,7 @@ class PCMSegmentEventSource {
|
||||
std::shared_ptr<PCMSegment> segment_;
|
||||
std::size_t bit_pointer_;
|
||||
Track::Event next_event_;
|
||||
LFSR<uint64_t> lfsr_;
|
||||
Numeric::LFSR<uint64_t> lfsr_;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
//
|
||||
|
||||
#include "PCMTrack.hpp"
|
||||
#include "../../../NumberTheory/Factors.hpp"
|
||||
#include "../../../Numeric/Factors.hpp"
|
||||
#include "../../../Outputs/Log.hpp"
|
||||
|
||||
using namespace Storage::Disk;
|
||||
|
||||
Reference in New Issue
Block a user