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
9 changes: 9 additions & 0 deletions docs/libraries/multi-threading.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
description: C++ の平行・並列ライブラリの紹介

# マルチタスクスケジューリング

- [Cpp-Taskflow](https://github.com/cpp-taskflow/cpp-taskflow) <small>MIT</small>
- C++17 以上でモダンな API でタスクフローが組める
- work-stealing スケジューラによる高効率なタスクスケジューリング
- chrome://tracing で実行状況をモニタできる
- タスクフローをグラフ出力できる
13 changes: 13 additions & 0 deletions docs/libraries/testing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
description: C++ のテストフレームワークの紹介

# 単体テストフレームワーク

- [googletest](https://github.com/google/googletest) <small>BSD 3-Clause</small>
- [Catch](https://github.com/catchorg/Catch2) <small>Boost Software License</small>
- C++11 以上
- シングルヘッダで外部依存ライブラリなし
- 簡単に使い始められるインターフェース
- [doctest](https://github.com/onqtam/doctest) <small>MIT</small>
- C++11 以上
- シングルヘッダで外部依存ライブラリなし
- ヘッダのコンパイル時間が非常に短く([ベンチマーク](https://github.com/onqtam/doctest/blob/master/doc/markdown/benchmarks.md))、テスト実行のイテレーションを速く回せるのが売り
4 changes: 3 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ nav:
- ライブラリ:
- Boost: libraries/boost.md
- コンテナ: libraries/containers.md
- テキストデータ: libraries/text-data.md
- テキストデータ: libraries/text-data.md
- 平行・並列: libraries/multi-threading.md
- テストフレームワーク: libraries/testing.md
- ツール:
- オンラインコンパイラ: tools/onlinecompilers.md
- パッケージマネージャ: tools/package-manager.md
Expand Down