diff options
author | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-02-12 18:32:19 -0500 |
---|---|---|
committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-02-12 18:32:19 -0500 |
commit | 4a1c47705868ce2c48f1c57a7190d435e16c3ce8 (patch) | |
tree | 9d3540dc0203d1f5508ee2919c8d68bfff97a861 /parse/point.py | |
parent | b2fa65ecfe14bb9377fbd8afa5f457a07472b6fb (diff) |
Optimized plot script to handle different directory structures.
Diffstat (limited to 'parse/point.py')
-rw-r--r-- | parse/point.py | 6 |
1 files changed, 3 insertions, 3 deletions
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 | |||
8 | from collections import defaultdict | 8 | from collections import defaultdict |
9 | 9 | ||
10 | Type = Enum(['Min','Max','Avg','Var']) | 10 | Type = Enum(['Min','Max','Avg','Var']) |
11 | default_typemap = {Type.Max : {Type.Max : 1, Type.Min : 0, Type.Avg : 1, Type.Var : 1}, | 11 | default_typemap = {Type.Max : {Type.Max : 1, Type.Min : 1, Type.Avg : 1, Type.Var : 1}, |
12 | Type.Min : {Type.Max : 1, Type.Min : 0, Type.Avg : 1, Type.Var : 1}, | 12 | Type.Min : {Type.Max : 1, Type.Min : 1, Type.Avg : 1, Type.Var : 1}, |
13 | Type.Avg : {Type.Max : 1, Type.Min : 0, Type.Avg : 1, Type.Var : 1}} | 13 | Type.Avg : {Type.Max : 1, Type.Min : 1, Type.Avg : 1, Type.Var : 1}} |
14 | 14 | ||
15 | def make_typemap(): | 15 | def make_typemap(): |
16 | return copy.deepcopy(default_typemap) | 16 | return copy.deepcopy(default_typemap) |