From 2264d259cef3da87881d18a6a1f21c109a315fe2 Mon Sep 17 00:00:00 2001 From: James Finlinson Date: Fri, 18 Oct 2024 13:00:00 -0600 Subject: [PATCH] Update phase2.md Clarify data type of values --- project/phase2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/phase2.md b/project/phase2.md index bd898c4..85c2d2a 100644 --- a/project/phase2.md +++ b/project/phase2.md @@ -33,7 +33,7 @@ The format of these files is as follows: 1. `N`: the number of dimensions as a 64-bit unsigned integer. - In C++ this is an **`unsigned long`**. - Unless you're doing the extra credit, this will always be 2. -1. `m`: the wave orthotope size array, `N` 64-bit unsigned integers in order of dimensionality. +1. `m`: the wave orthotope size array, `N` 64-bit `unsigned long`s in order of dimensionality. - _Order of Dimensionality_ means the first value is the number of rows (1d), then columns (2d), then layers (3d), then hyper-layers etc. 1. `c`: the damping coefficient, a 64-bit float. - In C++ this is a **`double`**.