>>> from coral import representable >>> dcant = {'baix': [7, 1], 'soprano': [15, 3], 'tenor': [9, 0], 'contralt': [10, 2]} >>> ave_verum = {'baix': [2, 0], 'soprano': [4, 0], 'tenor': [3, 0], 'contralt': [2, 0]} >>> representable(dcant, ave_verum) True >>> cant_senyera = {'baix': [7, 0], 'soprano': [10, 0], 'tenor': [10, 0], 'contralt': [10, 0]} >>> representable(dcant, cant_senyera) False >>> stabat_mater = {'baix': [6, 1], 'soprano': [10, 1], 'tenor': [6, 1], 'contralt': [8, 1]} >>> representable(dcant, stabat_mater) False