1
0
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:
Thomas Harte
2020-01-19 23:14:35 -05:00
parent 8f94da9daf
commit 1b4b6b0aee
18 changed files with 39 additions and 53 deletions
+1 -1
View File
@@ -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"
+1 -1
View File
@@ -11,7 +11,7 @@
#include "../DiskImage.hpp"
#include "../../../FileHolder.hpp"
#include "../../../../NumberTheory/CRC.hpp"
#include "../../../../Numeric/CRC.hpp"
#include <string>
+1 -1
View File
@@ -10,7 +10,7 @@
#include "Constants.hpp"
#include "../../Track/PCMTrack.hpp"
#include "../../../../NumberTheory/CRC.hpp"
#include "../../../../Numeric/CRC.hpp"
#include <cassert>
#include <set>
+1 -1
View File
@@ -15,7 +15,7 @@
#include "Sector.hpp"
#include "../../Track/Track.hpp"
#include "../../../../NumberTheory/CRC.hpp"
#include "../../../../Numeric/CRC.hpp"
namespace Storage {
namespace Encodings {
+1 -1
View File
@@ -11,7 +11,7 @@
#include <cstdint>
#include <memory>
#include "../../../../NumberTheory/CRC.hpp"
#include "../../../../Numeric/CRC.hpp"
namespace Storage {
namespace Encodings {
+2 -2
View File
@@ -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_;
};
}
+1 -1
View File
@@ -7,7 +7,7 @@
//
#include "PCMTrack.hpp"
#include "../../../NumberTheory/Factors.hpp"
#include "../../../Numeric/Factors.hpp"
#include "../../../Outputs/Log.hpp"
using namespace Storage::Disk;