bf_intern_eigen_stubs.h 536 B

123456789101112131415161718192021
  1. /* Apache License, Version 2.0 */
  2. extern "C" {
  3. bool EIG_self_adjoint_eigen_solve(const int size,
  4. const float *matrix,
  5. float *r_eigen_values,
  6. float *r_eigen_vectors)
  7. {
  8. BLI_assert(0);
  9. UNUSED_VARS(size, matrix, r_eigen_values, r_eigen_vectors);
  10. return false;
  11. }
  12. void EIG_svd_square_matrix(const int size, const float *matrix, float *r_U, float *r_S, float *r_V)
  13. {
  14. BLI_assert(0);
  15. UNUSED_VARS(size, matrix, r_U, r_S, r_V);
  16. }
  17. }