IslandTest.h 416 B

12345678910111213141516
  1. // SPDX-FileCopyrightText: 2021 Jorrit Rouwe
  2. // SPDX-License-Identifier: MIT
  3. #pragma once
  4. #include <Tests/Test.h>
  5. // This test creates a number of disjoint piles of blocks to see if the islands are properly determined and that the simulation spreads them out over multiple CPUs
  6. class IslandTest : public Test
  7. {
  8. public:
  9. JPH_DECLARE_RTTI_VIRTUAL(IslandTest)
  10. // See: Test
  11. virtual void Initialize() override;
  12. };