Skip to content
Snippets Groups Projects
Select Git revision
  • a8bba72aeeab3ced5762364386455f95e6a30744
  • master default protected
  • develop protected
  • conda
  • 3.6.0
  • 3.5.0
  • 3.4.2
  • 3.4.1
  • 3.4.0
  • 3.4.0-rc2
  • 3.4.0-rc
  • 3.3.1
  • 3.3.1-rc
  • 3.3.0
  • 3.3.0-rc2
  • 3.3.0-rc
  • 3.2.1
  • 3.2.1-rc
  • 3.2.0
  • 3.2.0-rc
  • 3.1.1
  • 3.1.1-rc2
  • 3.1.1-rc
  • 3.1.0
24 results

wrap_modelling.cc

Blame
  • Gerardo Tauriello's avatar
    SCHWED-1269: Removed all traces of the BackboneLoopScorer
    Gerardo Tauriello authored
    042c8b41
    History
    wrap_modelling.cc 488 B
    #include <boost/python.hpp>
    
    void export_gap();
    void export_model();
    void export_gap_extender();
    void export_extension_scheme();
    void export_loop_candidate();
    void export_loop_closure();
    void export_monte_carlo();
    void export_constraint_constructor();
    
    BOOST_PYTHON_MODULE(_modelling)
    {
      export_gap();
      export_model();
      export_gap_extender();
      export_extension_scheme();
      export_loop_candidate();
      export_loop_closure();
      export_monte_carlo();
      export_constraint_constructor();
    }