Is there any documentation on ExQalibur? It would be interesting and helpful to know how StateVector is implemented and what state operations exist.
For example is there no dot product between two StateVectors?
Is there any documentation on ExQalibur? It would be interesting and helpful to know how StateVector is implemented and what state operations exist.
For example is there no dot product between two StateVectors?
Hello,
For now, the perceval documentation is the only place where you can get information about exqalibur classes. You can probably find what you are looking for in State and StateVector — perceval v0.13 documentation.
We are currently working on upgrading the perceval documentation so it will be clearer about what is in exqalibur.
For the dot product, the StateVector doesn’t implement it, so you must do it yourself. You can get inspiration from perceval.utils.dist_metrics.tvd_dist()
if you want.
Regards,