From 6aa4c0bf80a8738025aa861a1bd648bdff0a4112 Mon Sep 17 00:00:00 2001 From: Cody Michael Jones <46515483+cm-jones@users.noreply.github.com> Date: Thu, 27 Jun 2024 06:12:35 -0500 Subject: [PATCH] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 74d5f2e..69ae147 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ Vector x = solve(A, b); ## Unit Testing -Thales uses [Google Test](https://github.com/google/googletest) for unit testing. To run the unit tests, first [build](#build-and-install) the project, and then execute the following command inside the `build` directory: +Cramer uses [Google Test](https://github.com/google/googletest) for unit testing. To run the unit tests, first [build](#build-and-install) the project, and then execute the following command inside the `build` directory: ```sh ctest @@ -106,18 +106,18 @@ This will run all the registered unit tests and display the results. ## Benchmarking -Thales uses [Google Benchmark](https://github.com/google/benchmark) for benchmarking. To run the benchmarks, follow these steps: +Cramer uses [Google Benchmark](https://github.com/google/benchmark) for benchmarking. To run the benchmarks, follow these steps: 1. Build the benchmarks (if not already built): ``` - cmake --build build --target thales_benchmarks + cmake --build build --target benchmark_all ``` 2. Run the benchmarks: ``` cd build - make thales_benchmarks - ./thales_benchmarks + make benchmark_all + ./benchmark_all ``` This will execute all the registered benchmarks and display the results.