This commit is contained in:
h z
2024-06-21 21:59:13 +08:00
commit 614bc59897
28 changed files with 2049 additions and 0 deletions

17
tests/MatrixExpLogTest.cs Normal file
View File

@@ -0,0 +1,17 @@
using Skeleton.Constants;
namespace SkeletonTest.tests;
public static class MatrixExpLogTest
{
[Test]
public static void ExpTestCase0()
{
LieSU3 w = new LieSU3( 0.44879894874697296 * AlgebraConstant.I, 0, 0, 0,
0 - 0.11636159072063412 * AlgebraConstant.I, -0.5651605390583659 + 0.3494531429928127 * AlgebraConstant.I,
0, 0.5651605403306819 + 0.34945314093513263 * AlgebraConstant.I,
0 - 0.33243736223309456 * AlgebraConstant.I);
w.Exp();
}
}