Skip to content

Commit

Permalink
gait2dc.c: no longer displaying copyright notice when MEX function is…
Browse files Browse the repository at this point in the history
… initialized.

Still a brief message is displayed.

The copyright notice is still in the comments at the beginning of the source code.
  • Loading branch information
tvdbogert committed Feb 20, 2025
1 parent 583156c commit b6a345c
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/model/gait2dc/c_files/gait2dc.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
* @author Antonie J. (Ton) van den Bogert, Iris Kellermann, Eva Dorschky
* @date Mai 31, 2016
*
*
* @copyright 2009-2012 Orchard Kinetics LLC
*
* @details Implicit differential equation for 2D musculoskeletal model : f(x,dx/dt,u) = 0
Expand Down Expand Up @@ -586,11 +585,7 @@ void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[]) {
if (!mxIsDouble(prhs[1]) || mxIsComplex(prhs[1]) )
mexErrMsgTxt("gait2dc: Incorrect type for par, must be double.");
par = mxGetPr(prhs[1]);
printf("***************************************************\n");
printf("* MEX Function gait2dc *\n");
printf("* (c) 2011-2012 Orchard Kinetics LLC *\n");
printf("***************************************************\n");
printf("Initializing model...\n");
printf("Initializing MEX function gait2dc...\n");
ExtractParameters(par);
initialized = 1959;
nstates = 2*NDOF + 2*NMUS + 4*ncontacts;
Expand Down

0 comments on commit b6a345c

Please sign in to comment.