-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
93 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
* | ||
* gaussian_mixture_simple_initialize.c | ||
* | ||
* Code generation for function 'gaussian_mixture_simple_initialize' | ||
* | ||
*/ | ||
|
||
/* Include files */ | ||
#include "gaussian_mixture_simple_initialize.h" | ||
#include "fetch_thresholds.h" | ||
#include "fetch_thresholds_data.h" | ||
#include "rt_nonfinite.h" | ||
|
||
/* Function Definitions */ | ||
void gaussian_mixture_simple_initialize(void) | ||
{ | ||
rt_InitInfAndNaN(); | ||
omp_init_nest_lock(&emlrtNestLockGlobal); | ||
isInitialized_gaussian_mixture_simple = true; | ||
} | ||
|
||
/* End of code generation (gaussian_mixture_simple_initialize.c) */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* | ||
* gaussian_mixture_simple_initialize.h | ||
* | ||
* Code generation for function 'gaussian_mixture_simple_initialize' | ||
* | ||
*/ | ||
|
||
#ifndef GAUSSIAN_MIXTURE_SIMPLE_INITIALIZE_H | ||
#define GAUSSIAN_MIXTURE_SIMPLE_INITIALIZE_H | ||
|
||
/* Include files */ | ||
#include <stddef.h> | ||
#include <stdlib.h> | ||
#include "rtwtypes.h" | ||
#include "omp.h" | ||
#include "fetch_thresholds_types.h" | ||
|
||
/* Function Declarations */ | ||
extern void gaussian_mixture_simple_initialize(void); | ||
|
||
#endif | ||
|
||
/* End of code generation (gaussian_mixture_simple_initialize.h) */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* | ||
* | ||
* fetch_thresholds_terminate.c | ||
* | ||
* Code generation for function 'gaussian_mixture_simple_terminate' | ||
* | ||
*/ | ||
|
||
/* Include files */ | ||
#include "gaussian_mixture_simple_terminate.h" | ||
#include "fetch_thresholds.h" | ||
#include "fetch_thresholds_data.h" | ||
#include "rt_nonfinite.h" | ||
|
||
/* Function Definitions */ | ||
void gaussian_mixture_simple_terminate(void) | ||
{ | ||
omp_destroy_nest_lock(&emlrtNestLockGlobal); | ||
isInitialized_gaussian_mixture_simple = false; | ||
} | ||
|
||
/* End of code generation (gaussian_mixture_simple_terminate.c) */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* | ||
* gaussian_mixture_simple_terminate.h | ||
* | ||
* Code generation for function 'gaussian_mixture_simple_terminate' | ||
* | ||
*/ | ||
|
||
#ifndef GAUSSIAN_MIXTURE_SIMPLE_TERMINATE_H | ||
#define GAUSSIAN_MIXTURE_SIMPLE_TERMINATE_H | ||
|
||
/* Include files */ | ||
#include <stddef.h> | ||
#include <stdlib.h> | ||
#include "rtwtypes.h" | ||
#include "omp.h" | ||
#include "fetch_thresholds_types.h" | ||
|
||
/* Function Declarations */ | ||
extern void gaussian_mixture_simple_terminate(void); | ||
|
||
#endif | ||
|
||
/* End of code generation (gaussian_mixture_simple_terminate.h) */ |