[YAML] preserve zero in Troe T2 input

This commit is contained in:
Ingmar Schoegl 2019-11-09 19:16:08 -06:00 committed by Ray Speth
parent 5bc81bf397
commit 197c69a476

View file

@ -620,7 +620,7 @@ class Troe:
def reduce(self, output):
troe = FlowMap([('A', self.A), ('T3', self.T3), ('T1', self.T1)])
if self.T2:
if self.T2 is not None:
troe['T2'] = self.T2
output['Troe'] = troe