From 0f966ebadc51700250c1053e20cf5d12987368e6 Mon Sep 17 00:00:00 2001 From: dmcgeever Date: Wed, 27 Jul 2011 15:43:29 +0000 Subject: minor change, writing to an output folder generated an error so xml files are now written in the PDDLParser folder instead. --- SA_POP/utils/PDDLtoSANetTranslator/PDDLParser/src/PDDLtoSAN.java | 6 +++--- 1 file 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"); } } -- cgit v1.2.1