17 lines
524 B
C#
17 lines
524 B
C#
using Skeleton.Constants;
|
|
|
|
namespace Skeleton.Test;
|
|
[TestFixture]
|
|
public class MatrixExpLogTest : BaseTest
|
|
{
|
|
[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();
|
|
}
|
|
} |