Skip to content

Commit

Permalink
- allow access to sliders from language bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
fbergmann committed Mar 28, 2024
1 parent 0287d1b commit 9b70428
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions copasi/bindings/R/R.i
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019 - 2020 by Pedro Mendes, Rector and Visitors of the
// Copyright (C) 2019 - 2024 by Pedro Mendes, Rector and Visitors of the
// University of Virginia, University of Heidelberg, and University
// of Connecticut School of Medicine.
// All rights reserved.
Expand Down Expand Up @@ -188,7 +188,7 @@ import types
// Taken from CopasiSE.cpp

// Create the root container
CRootContainer::init(0,NULL,false);
CRootContainer::init(0,NULL,true);

%}

Expand Down
4 changes: 2 additions & 2 deletions copasi/bindings/csharp/local.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019 - 2021 by Pedro Mendes, Rector and Visitors of the
// Copyright (C) 2019 - 2024 by Pedro Mendes, Rector and Visitors of the
// University of Virginia, University of Heidelberg, and University
// of Connecticut School of Medicine.
// All rights reserved.
Expand Down Expand Up @@ -917,5 +917,5 @@ int GetType_COptTask(COptTask* pPointer)

void initCopasi()
{
CRootContainer::init(0, NULL, false);
CRootContainer::init(0, NULL, true);
}
4 changes: 2 additions & 2 deletions copasi/bindings/java/local.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019 by Pedro Mendes, Rector and Visitors of the
// Copyright (C) 2019 - 2024 by Pedro Mendes, Rector and Visitors of the
// University of Virginia, University of Heidelberg, and University
// of Connecticut School of Medicine.
// All rights reserved.
Expand Down Expand Up @@ -127,5 +127,5 @@ typedef CMatrixInterface<CMatrix<C_FLOAT64> > AnnotatedFloatMatrix;

void initCopasi()
{
CRootContainer::init(0, NULL, false);
CRootContainer::init(0, NULL, true);
}
4 changes: 2 additions & 2 deletions copasi/bindings/octave/octave.i
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019 - 2020 by Pedro Mendes, Rector and Visitors of the
// Copyright (C) 2019 - 2024 by Pedro Mendes, Rector and Visitors of the
// University of Virginia, University of Heidelberg, and University
// of Connecticut School of Medicine.
// All rights reserved.
Expand Down Expand Up @@ -161,7 +161,7 @@
// Taken from CopasiSE.cpp

// Create the root container
CRootContainer::init(0,NULL,false);
CRootContainer::init(0,NULL,true);

%}

Expand Down
4 changes: 2 additions & 2 deletions copasi/bindings/perl/perl.i
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019 - 2020 by Pedro Mendes, Rector and Visitors of the
// Copyright (C) 2019 - 2024 by Pedro Mendes, Rector and Visitors of the
// University of Virginia, University of Heidelberg, and University
// of Connecticut School of Medicine.
// All rights reserved.
Expand Down Expand Up @@ -161,7 +161,7 @@
// Taken from CopasiSE.cpp

// Create the root container
CRootContainer::init(0,NULL,false);
CRootContainer::init(0,NULL,true);

%}

Expand Down
2 changes: 1 addition & 1 deletion copasi/bindings/python/python.i
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ import sys
// Taken from CopasiSE.cpp

// Create the root container
CRootContainer::init(0,NULL,false);
CRootContainer::init(0,NULL,true);

%}

Expand Down
4 changes: 2 additions & 2 deletions copasi/bindings/swig/CRootContainer.i
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019 - 2021 by Pedro Mendes, Rector and Visitors of the
// Copyright (C) 2019 - 2024 by Pedro Mendes, Rector and Visitors of the
// University of Virginia, University of Heidelberg, and University
// of Connecticut School of Medicine.
// All rights reserved.
Expand Down Expand Up @@ -54,7 +54,7 @@
{
try
{
CRootContainer::init(0,NULL,false);
CRootContainer::init(0,NULL,true);
}
catch(...)
{
Expand Down

0 comments on commit 9b70428

Please sign in to comment.