8#include <pybind11/pybind11.h>
9#include <pybind11/stl.h>
17 :
public std::enable_shared_from_this<BoundPropertyBase>
25 std::string
str_()
const;
27 std::string
latex_()
const;
29 std::string
repr_()
const;
34 Ex::iterator
get_it()
const;
49 template <
typename PropT,
typename... ParentTs>
51 :
virtual public ParentTs...
55 using py_type = pybind11::class_<BoundProperty, std::shared_ptr<BoundProperty>, ParentTs...>;
65 std::string
str_()
const;
67 std::string
latex_()
const;
69 std::string
repr_()
const;
81 template <
typename PropT> std::string
get_name();
83 template <
typename BoundPropT>
typename BoundPropT::py_type
def_abstract_prop(pybind11::module&
m);
84 template <
typename BoundPropT>
typename BoundPropT::py_type
def_prop(pybind11::module&
m);
Definition py_properties.hh:18
Ex & get_ex() const
Definition py_properties.cc:141
const property * prop
Definition py_properties.hh:40
std::string latex_() const
Human-readable form using LaTeX markup.
Definition py_properties.cc:95
BoundPropertyBase()
Definition py_properties.cc:66
std::string repr_() const
Python-parseable form. FIXME: not correct right now.
Definition py_properties.cc:125
virtual ~BoundPropertyBase()
Definition py_properties.cc:80
Ex_ptr for_obj
Definition py_properties.hh:45
static Kernel & get_kernel()
Definition py_properties.cc:131
Ex::iterator get_it() const
Definition py_properties.cc:146
static Properties & get_props()
Definition py_properties.cc:136
std::string str_() const
Human-readable form in text, i.e. no special formatting.
Definition py_properties.cc:85
Definition py_properties.hh:52
const cpp_type * get_prop() const
Definition py_properties.cc:196
pybind11::class_< BoundProperty, std::shared_ptr< BoundProperty >, ParentTs... > py_type
Definition py_properties.hh:55
std::string str_() const
Human-readable form in text, i.e. no special formatting.
Definition py_properties.cc:214
void attach(Ex_ptr ex) const
Attach this property to a different symbol.
Definition py_properties.cc:202
PropT cpp_type
Definition py_properties.hh:54
std::string latex_() const
Human-readable form using LaTeX markup.
Definition py_properties.cc:220
BoundProperty()
Definition py_properties.cc:153
std::string repr_() const
Python-parseable form. FIXME: not correct right now.
Definition py_properties.cc:226
static std::shared_ptr< BoundProperty > get_from_kernel(Ex::iterator ex, const std::string &label, bool ignore_parent_rel)
Definition py_properties.cc:177
Basic storage class for symbolic mathemematical expressions.
Definition Storage.hh:142
Class holding a collection of properties attached to expressions.
Definition Props.hh:237
Base class for all properties, handling argument parsing and defining the interface.
Definition Props.hh:127
Functions to handle the exchange properties of two or more symbols in a product.
Definition Adjform.cc:83
pybind11::list list_properties()
Definition py_properties.cc:268
BoundPropT::py_type def_abstract_prop(pybind11::module &m, const std::string &name)
Definition py_properties.cc:232
void init_properties(py::module &m)
Definition py_properties.cc:352
std::shared_ptr< Ex > Ex_ptr
Definition py_ex.hh:9
void set(rset_t::iterator &num, multiplier_t fac)
Definition Storage.cc:1063
BoundPropT::py_type def_prop(pybind11::module &m)
Definition py_properties.cc:248