add maximum process count

This commit is contained in:
Benji Dial 2023-07-17 08:45:12 -04:00
parent fa874b73ff
commit 723437674e
4 changed files with 16 additions and 4 deletions

View file

@ -12,6 +12,10 @@
#define LIB94_CORE_SIZE 8000
#endif
#ifndef LIB94_MAX_PROCESSES
#define LIB94_MAX_PROCESSES 16000
#endif
namespace lib94 {
//this type is used to represent values inside the core.

View file

@ -259,6 +259,10 @@ namespace lib94 {
this_warrior->processes.push_back(pc);
}
bool at_process_limit() {
return this_warrior->processes.size() + 1 == LIB94_MAX_PROCESSES;
}
template <bool update_address_sets>
const warrior *single_step() {
this_warrior = alive_warriors.front();

View file

@ -5,6 +5,7 @@
namespace lib94 {
void enqueue_process(number_t pc);
bool at_process_limit();
extern instruction core[LIB94_CORE_SIZE];
extern number_t program_counter;
@ -336,9 +337,11 @@ namespace lib94 {
}
else if constexpr (op == SPL) {
if (!at_process_limit()) {
maybe_add_read_instruction(a_instruction_writable);
enqueue_process((program_counter + 1) % LIB94_CORE_SIZE);
program_counter = (a_instruction_writable - core + LIB94_CORE_SIZE - 1) % LIB94_CORE_SIZE;
}
return true;
}

View file

@ -14,7 +14,8 @@ Then, to build all of the software, just run make.
lib94 attempts to follow the draft standard at <https://corewar.co.uk/standards/icws94.txt>, minus P-space. There are no read/write
limits (or if you prefer, they are the same as the core size). The minimum separation is always 0, and the core size is set at 8000.
To change the core size, change LIB94_CORE_SIZE in include/lib94/lib94.hpp, run make clean, and then run make.
To change the core size, change LIB94_CORE_SIZE in include/lib94/lib94.hpp, run make clean, and then run make. The maximum number of
processes is set at 16000. To change that, change LIB94_MAX_PROCESSES in include/lib94/lib94.hpp, run make clean, and then run make.
=== bench ===