m-tosch / mu

A small, simple c++ math library
MIT License
1 stars 0 forks source link

merge vector<>vector and matrix<>matrix ctor from-different-type tests #76

Closed m-tosch closed 3 years ago

m-tosch commented 3 years ago

create this ctor in matrix first, see #75 it is likely that an overload for the cast operator will be required for the ctor tests #74 <-- OBSOLETE

tests could be put into same_type_combinations.h test suite and made as generic as possible new fixture is probably required. must be able to instantiate these tests with different types than the math tests in this test suite!

m-tosch commented 3 years ago

tests can be merged for sure.. currently trying to figure out how to build the compare value for the tests...

m-tosch commented 3 years ago

implemented ctors-from-different-array-type for both Vector and Matrix. Using it for the compare value of these tests here

m-tosch commented 3 years ago

follow up #77