This commit is contained in:
Oliver
2025-04-29 09:15:19 +01:00
parent be28d6f5f0
commit 85f0675cca
2 changed files with 2 additions and 2 deletions

View File

@@ -242,7 +242,7 @@ Use same variable symbols as given in the question
"integrand": str(integrand),
"problem_type": problem_type,
"variable": str(x),
"expected_answer_expression": answer,
"expected_answer_expression": str(answer),
"difficulty": {
"problem_type_weights": self.config.problem_type_weights,
},

View File

@@ -88,7 +88,7 @@ When performing calculations, please follow these guidelines:
"source_index": idx,
"integrand": str(derivative),
"variable": str(symbol),
"expected_answer_expression": polynomial,
"expected_answer_expression": str(polynomial),
"num_terms": num_terms,
"difficulty": {
"terms": (self.config.min_terms, self.config.max_terms),