@alexey.noskov while comparing the .doc files below, Aspose output .doc file is identifying changes that were not made.
Please check the zip file below, which contains the input documents and outputs generated by both Aspose and MS Word. In the Aspose output, it is identifying format changes on the table on page 3, which were intact in both the source and target documents.
@Kldv I cannot reproduce the problem on my side using the latest 25.3 version of Aspose.Words and the following simple code:
Document v1 = new Document("C:\\Temp\\v1.doc");
Document v2 = new Document("C:\\Temp\\v2.doc");
v1.compare(v2, "AW", new Date());
v1.save("C:\\Temp\\out.doc");