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
Binary file modified .cache/clangd/index/combinatoric.cpp.E6018CF338DAA1FC.idx
Binary file not shown.
Binary file modified .cache/clangd/index/combinatoric.hpp.CE279D35FC38B4A8.idx
Binary file not shown.
2 changes: 1 addition & 1 deletion .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: CMake Multi-Platform Build

on:
push:
branches: ["main"]
branches: ["main", "master"]
pull_request:
branches: ["main"]

Expand Down
1 change: 1 addition & 0 deletions docs/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
- [Operation Category](./api/operation/README.md)
- [Arithmetic](./api/operation/arithmetic.md)
- [Logarithm](./api/operation/logarithm.md)
- [Combinatoric](./api/operation/combinatoric.md)
- [Linear Category](./api/linear/README.md)
- [Algebra](./api/linear/algebra.md)
- [Matrix](./api/linear/matrix.md)
Expand Down
2 changes: 2 additions & 0 deletions docs/api/operation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ The `operation` category contains general mathematical operations including arit

- **[Arithmetic](./arithmetic.md)** - Comprehensive arithmetic operations and utilities
- **[Logarithm](./logarithm.md)** - Logarithmic operations and exponential equation solving
- **[Combinatoric](./logarithm.md)** - Compilation of combinatoric operations and utilities

## Usage

```c++
#include <imeth/operation/arithmetic.hpp>
#include <imeth/operation/logarithm.hpp>
#include <imeth/operation/combinatoric.hpp>
```
Loading