Skip to content

Commit

Permalink
rename cpp files QML/LMS -> qml/lms
Browse files Browse the repository at this point in the history
  • Loading branch information
Kss2k committed Jan 9, 2025
1 parent 3a50e83 commit 89c9645
Showing 5 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions src/RcppExports.cpp
Original file line number Diff line number Diff line change
@@ -11,6 +11,18 @@ Rcpp::Rostream<true>& Rcpp::Rcout = Rcpp::Rcpp_cout_get();
Rcpp::Rostream<false>& Rcpp::Rcerr = Rcpp::Rcpp_cerr_get();
#endif

// calcSESimpleSlopes
arma::vec calcSESimpleSlopes(arma::mat const& X, arma::mat const& V);
RcppExport SEXP _modsem_calcSESimpleSlopes(SEXP XSEXP, SEXP VSEXP) {
BEGIN_RCPP
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< arma::mat const& >::type X(XSEXP);
Rcpp::traits::input_parameter< arma::mat const& >::type V(VSEXP);
rcpp_result_gen = Rcpp::wrap(calcSESimpleSlopes(X, V));
return rcpp_result_gen;
END_RCPP
}
// muLmsCpp
arma::vec muLmsCpp(Rcpp::List model, arma::vec z);
RcppExport SEXP _modsem_muLmsCpp(SEXP modelSEXP, SEXP zSEXP) {
@@ -150,6 +162,7 @@ END_RCPP
}

static const R_CallMethodDef CallEntries[] = {
{"_modsem_calcSESimpleSlopes", (DL_FUNC) &_modsem_calcSESimpleSlopes, 2},
{"_modsem_muLmsCpp", (DL_FUNC) &_modsem_muLmsCpp, 2},
{"_modsem_sigmaLmsCpp", (DL_FUNC) &_modsem_sigmaLmsCpp, 2},
{"_modsem_muQmlCpp", (DL_FUNC) &_modsem_muQmlCpp, 2},
2 changes: 1 addition & 1 deletion src/equationsLMS.cpp → src/equations_lms.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include <RcppArmadillo.h>
#include "LMS.h"
#include "lms.h"
// [[Rcpp::depends(RcppArmadillo)]]


2 changes: 1 addition & 1 deletion src/equationsQML.cpp → src/equations_qml.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include <RcppArmadillo.h>
#include "QML.h"
#include "qml.h"
// [[Rcpp::depends(RcppArmadillo)]]


File renamed without changes.
File renamed without changes.

0 comments on commit 89c9645

Please sign in to comment.