2023-04-26 16:42:33 +02:00
|
|
|
extends Node
|
|
|
|
|
|
|
|
var mlpp_tests : MLPPMatrixTests = null
|
|
|
|
|
|
|
|
func _ready() -> void:
|
|
|
|
mlpp_tests = MLPPMatrixTests.new()
|
|
|
|
|
2023-04-26 22:09:12 +02:00
|
|
|
mlpp_tests.run_tests()
|
|
|
|
|
|
|
|
#mlpp_tests.test_mlpp_matrix()
|
|
|
|
#mlpp_tests.test_mlpp_matrix_mul()
|
|
|
|
|
|
|
|
get_tree().quit()
|