|
98 | 98 | actions_str8 += str(a) + "\n" |
99 | 99 |
|
100 | 100 | dump = ( |
101 | | - "A* - Critical Path - H1\n ======PLAN (Nodes)=======\n%s\n" \ |
102 | | - "======PLAN (Actions)=======\n%s\n" \ |
103 | | - "======METRICS=======\n%s\n\n" \ |
104 | | - "A* - Critical Path - H2\n" \ |
105 | | - "======PLAN (Nodes)=======\n%s\n" \ |
106 | | - "======PLAN (Actions)=======\n%s\n" \ |
107 | | - "======METRICS=======\n%s\n\n" \ |
108 | | - "A* - Critical Path - H3\n" \ |
109 | | - "======PLAN (Nodes)=======\n%s\n" \ |
110 | | - "======PLAN (Actions)=======\n%s\n" \ |
111 | | - "======METRICS=======\n%s\n\n" \ |
112 | | - "A* - Relaxed Critical Path - H1\n" \ |
113 | | - "======PLAN (Nodes)=======\n%s\n" \ |
114 | | - "======PLAN (Actions)=======\n%s\n" \ |
115 | | - "======METRICS=======\n%s\n\n" \ |
116 | | - "A* - Relaxed Critical Path - H2\n" \ |
117 | | - "======PLAN (Nodes)=======\n%s\n" \ |
118 | | - "======PLAN (Actions)=======\n%s\n" \ |
119 | | - "======METRICS=======\n%s\n\n" \ |
120 | | - "A* - Relaxed Citical Path - H3\n" \ |
121 | | - "======PLAN (Nodes)=======\n%s\n" \ |
122 | | - "======PLAN (Actions)=======\n%s\n" \ |
123 | | - "======METRICS=======\n%s\n\n" \ |
124 | | - "A* - Delete Relaxation - H_Max\n" \ |
125 | | - "======PLAN (Nodes)=======\n%s\n" \ |
126 | | - "======PLAN (Actions)=======\n%s\n" \ |
127 | | - "======METRICS=======\n%s\n\n" \ |
128 | | - "A* - Delete Relaxation - H_Add\n" \ |
129 | | - "======PLAN (Nodes)=======\n%s\n" \ |
130 | | - "======PLAN (Actions)=======\n%s\n" \ |
131 | | - "======METRICS=======\n%s\n\n" |
132 | | - % (str(path), actions_str, str(metrics), |
133 | | - str(path2), actions_str2, str(metrics2), |
134 | | - str(path3), actions_str3, str(metrics3), |
135 | | - str(path4), actions_str4, str(metrics4), |
136 | | - str(path5), actions_str5, str(metrics5), |
137 | | - str(path6), actions_str6, str(metrics6), |
138 | | - str(path7), actions_str7, str(metrics7), |
139 | | - str(path8), actions_str8, str(metrics8) |
| 101 | + "A* - Critical Path - H1\n ======PLAN (Nodes)=======\n%s\n" |
| 102 | + "======PLAN (Actions)=======\n%s\n" |
| 103 | + "======METRICS=======\n%s\n\n" |
| 104 | + "A* - Critical Path - H2\n" |
| 105 | + "======PLAN (Nodes)=======\n%s\n" |
| 106 | + "======PLAN (Actions)=======\n%s\n" |
| 107 | + "======METRICS=======\n%s\n\n" |
| 108 | + "A* - Critical Path - H3\n" |
| 109 | + "======PLAN (Nodes)=======\n%s\n" |
| 110 | + "======PLAN (Actions)=======\n%s\n" |
| 111 | + "======METRICS=======\n%s\n\n" |
| 112 | + "A* - Relaxed Critical Path - H1\n" |
| 113 | + "======PLAN (Nodes)=======\n%s\n" |
| 114 | + "======PLAN (Actions)=======\n%s\n" |
| 115 | + "======METRICS=======\n%s\n\n" |
| 116 | + "A* - Relaxed Critical Path - H2\n" |
| 117 | + "======PLAN (Nodes)=======\n%s\n" |
| 118 | + "======PLAN (Actions)=======\n%s\n" |
| 119 | + "======METRICS=======\n%s\n\n" |
| 120 | + "A* - Relaxed Citical Path - H3\n" |
| 121 | + "======PLAN (Nodes)=======\n%s\n" |
| 122 | + "======PLAN (Actions)=======\n%s\n" |
| 123 | + "======METRICS=======\n%s\n\n" |
| 124 | + "A* - Delete Relaxation - H_Max\n" |
| 125 | + "======PLAN (Nodes)=======\n%s\n" |
| 126 | + "======PLAN (Actions)=======\n%s\n" |
| 127 | + "======METRICS=======\n%s\n\n" |
| 128 | + "A* - Delete Relaxation - H_Add\n" |
| 129 | + "======PLAN (Nodes)=======\n%s\n" |
| 130 | + "======PLAN (Actions)=======\n%s\n" |
| 131 | + "======METRICS=======\n%s\n\n" |
| 132 | + % ( |
| 133 | + str(path), |
| 134 | + actions_str, |
| 135 | + str(metrics), |
| 136 | + str(path2), |
| 137 | + actions_str2, |
| 138 | + str(metrics2), |
| 139 | + str(path3), |
| 140 | + actions_str3, |
| 141 | + str(metrics3), |
| 142 | + str(path4), |
| 143 | + actions_str4, |
| 144 | + str(metrics4), |
| 145 | + str(path5), |
| 146 | + actions_str5, |
| 147 | + str(metrics5), |
| 148 | + str(path6), |
| 149 | + actions_str6, |
| 150 | + str(metrics6), |
| 151 | + str(path7), |
| 152 | + actions_str7, |
| 153 | + str(metrics7), |
| 154 | + str(path8), |
| 155 | + actions_str8, |
| 156 | + str(metrics8), |
140 | 157 | ) |
141 | 158 | ) |
142 | 159 |
|
|
0 commit comments