Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bf_intern_eigen_stubs.h « stubs « blenlib « gtests « tests - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 97c0916dd9b3bb9700af9960bbb1f439df8f631a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* Apache License, Version 2.0 */

extern "C" {

bool EIG_self_adjoint_eigen_solve(const int size,
                                  const float *matrix,
                                  float *r_eigen_values,
                                  float *r_eigen_vectors)
{
  BLI_assert(0);
  UNUSED_VARS(size, matrix, r_eigen_values, r_eigen_vectors);
  return false;
}

void EIG_svd_square_matrix(const int size, const float *matrix, float *r_U, float *r_S, float *r_V)
{
  BLI_assert(0);
  UNUSED_VARS(size, matrix, r_U, r_S, r_V);
}
}