summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordmcgeever <dmcgeever@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2011-07-27 15:43:29 +0000
committerdmcgeever <dmcgeever@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2011-07-27 15:43:29 +0000
commit0f966ebadc51700250c1053e20cf5d12987368e6 (patch)
treee759b6ce4dc45a4e74b6254742421d5262aa4ecf
parent1646465c35e5231f1c749434166653f126f79d2a (diff)
downloadATCD-RACE_devl.tar.gz
minor change, writing to an output folder generated an error so xml files are now written in the PDDLParser folder instead.RACE_devl
-rw-r--r--SA_POP/utils/PDDLtoSANetTranslator/PDDLParser/src/PDDLtoSAN.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/SA_POP/utils/PDDLtoSANetTranslator/PDDLParser/src/PDDLtoSAN.java b/SA_POP/utils/PDDLtoSANetTranslator/PDDLParser/src/PDDLtoSAN.java
index a4d9c179c84..cd10df264dd 100644
--- a/SA_POP/utils/PDDLtoSANetTranslator/PDDLParser/src/PDDLtoSAN.java
+++ b/SA_POP/utils/PDDLtoSANetTranslator/PDDLParser/src/PDDLtoSAN.java
@@ -121,9 +121,9 @@ public class PDDLtoSAN
int this_count = all_count++;
- n.write_SAN_to_xml("output\\"+this_count+"_"+domain.getDomainName()+"_"+problem.getProblemName()+"-san.xml");
- n.write_TM_to_xml("output\\"+this_count+"_"+domain.getDomainName()+"_"+problem.getProblemName()+"-tm.xml");
- n.write_goals_to_file("output\\"+this_count+"_"+domain.getDomainName()+"_"+problem.getProblemName()+"-goals");
+ n.write_SAN_to_xml(this_count+"_"+domain.getDomainName()+"_"+problem.getProblemName()+"-san.xml");
+ n.write_TM_to_xml(this_count+"_"+domain.getDomainName()+"_"+problem.getProblemName()+"-tm.xml");
+ n.write_goals_to_file(this_count+"_"+domain.getDomainName()+"_"+problem.getProblemName()+"-goals");
}
}