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: dec2631fc63779fadf201c7c709b326958920539 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* Apache License, Version 2.0 */

extern "C" {

void EIG_svd_square_matrix(
    const int size, const float *matrix, float *r_U, float *r_S, float *r_V);
bool EIG_self_adjoint_eigen_solve(const int size,
                                  const float *matrix,
                                  float *r_eigen_values,
                                  float *r_eigen_vectors);

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);
}
}