From e480a9ece819e45541d327b0c53789e941d032ee Mon Sep 17 00:00:00 2001 From: Chris Granade Date: Thu, 30 Mar 2017 17:28:45 +1100 Subject: [PATCH] Possible example of using "theory" tag. --- src/qinfer/tomography/distributions.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/qinfer/tomography/distributions.py b/src/qinfer/tomography/distributions.py index a58891c..6d3db30 100644 --- a/src/qinfer/tomography/distributions.py +++ b/src/qinfer/tomography/distributions.py @@ -35,6 +35,7 @@ ## IMPORTS ################################################################### +from qinfer._due import due, Doi from qinfer import Distribution, SingleSampleMixin from qinfer.tomography.bases import gell_mann_basis, tensor_product_basis @@ -213,6 +214,7 @@ class BCSZChoiDistribution(DensityOperatorDistribution): by the BCSZ prior [BCSZ09]_. The sampled states are normalized as states (trace 1). """ + @due.dcite(Doi("10.1016/j.physleta.2008.11.043"), tags=['theory']) def __init__(self, basis, rank=None, enforce_tp=True): if isinstance(basis, int): basis = gell_mann_basis(basis)