Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update phase2.md Clarify data type of values #29

Merged
merged 1 commit into from
Oct 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion project/phase2.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`**.
Expand Down