From 4a1c47705868ce2c48f1c57a7190d435e16c3ce8 Mon Sep 17 00:00:00 2001 From: Jonathan Herman Date: Tue, 12 Feb 2013 18:32:19 -0500 Subject: Optimized plot script to handle different directory structures. --- parse/point.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'parse/point.py') diff --git a/parse/point.py b/parse/point.py index ce9cfb0..d577306 100644 --- a/parse/point.py +++ b/parse/point.py @@ -8,9 +8,9 @@ from enum import Enum from collections import defaultdict Type = Enum(['Min','Max','Avg','Var']) -default_typemap = {Type.Max : {Type.Max : 1, Type.Min : 0, Type.Avg : 1, Type.Var : 1}, - Type.Min : {Type.Max : 1, Type.Min : 0, Type.Avg : 1, Type.Var : 1}, - Type.Avg : {Type.Max : 1, Type.Min : 0, Type.Avg : 1, Type.Var : 1}} +default_typemap = {Type.Max : {Type.Max : 1, Type.Min : 1, Type.Avg : 1, Type.Var : 1}, + Type.Min : {Type.Max : 1, Type.Min : 1, Type.Avg : 1, Type.Var : 1}, + Type.Avg : {Type.Max : 1, Type.Min : 1, Type.Avg : 1, Type.Var : 1}} def make_typemap(): return copy.deepcopy(default_typemap) -- cgit v1.2.2