Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@
- Removed `COO_Matrix` class.
- Added portable `Vector` class and policy-based memory utilities.
- Added new `Rosenbrock` integrator.
- Clarified naming conventions for macros.

## v0.1

Expand Down
4 changes: 4 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,10 @@ name. Use all caps (screaming snake case).
constexpr double EXP = 2.7183 // Yes
```

### Macros

Macros should use all caps, same as constants.

### Enums (enumerated types)

Always define `enum`s inside `GridKit` namespace. The `enum` name should
Expand Down
Loading