1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
#pragma once
#include "Storage.hh"
#include "Kernel.hh"
/// \ingroup pythoncore
///
/// Replace any objects of the form '@(...)' in the expression tree by the
/// python expression '...' if it exists. Rename dummies to avoid clashes.
void pull_in(std::shared_ptr<cadabra::Ex> ex, cadabra::Kernel *);
/// \ingroup pythoncore
///
/// Run all functions in the given expression which are available
/// in the Python scope.
void run_python_functions(std::shared_ptr<cadabra::Ex> ex, cadabra::Kernel *);
|