00001 /** 00002 * @file ChangedRatio.h 00003 * @brief Treat changed ratio comparing two documents 00004 * 00005 * @author Nakashima h 00006 * @date 2022-02-02 00007 * 00008 * $Id: ChangedRatio.h 33 2022-07-14 03:30:39Z shingo.yoneda $ 00009 * 00010 * Copyright (c) 2022 Antenna House, Inc. All rights reserved. 00011 */ 00012 00013 #pragma once 00014 00015 /** 00016 * @brief Deals with the changed ratio comparing two documents 00017 */ 00018 struct ChangedRatio { 00019 public: 00020 /** 00021 * @brief Same[\%] 00022 */ 00023 double MatchRatio; 00024 00025 /** 00026 * @brief Deleted[\%] 00027 */ 00028 double DeletedRatio; 00029 00030 /** 00031 * @brief Inserted[\%] 00032 */ 00033 double InsertedRatio; 00034 };