JP5008457B2 - Solution model display processing method for satisfying constraints, program and apparatus thereof - Google Patents

Solution model display processing method for satisfying constraints, program and apparatus thereof Download PDF

Info

Publication number
JP5008457B2
JP5008457B2 JP2007130442A JP2007130442A JP5008457B2 JP 5008457 B2 JP5008457 B2 JP 5008457B2 JP 2007130442 A JP2007130442 A JP 2007130442A JP 2007130442 A JP2007130442 A JP 2007130442A JP 5008457 B2 JP5008457 B2 JP 5008457B2
Authority
JP
Japan
Prior art keywords
solution
display
constraint
conditions
models
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Expired - Fee Related
Application number
JP2007130442A
Other languages
Japanese (ja)
Other versions
JP2008287411A (en
Inventor
中島  一
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Nippon Telegraph and Telephone Corp
Original Assignee
Nippon Telegraph and Telephone Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Nippon Telegraph and Telephone Corp filed Critical Nippon Telegraph and Telephone Corp
Priority to JP2007130442A priority Critical patent/JP5008457B2/en
Publication of JP2008287411A publication Critical patent/JP2008287411A/en
Application granted granted Critical
Publication of JP5008457B2 publication Critical patent/JP5008457B2/en
Expired - Fee Related legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Landscapes

  • User Interface Of Digital Computer (AREA)
  • Debugging And Monitoring (AREA)

Description

本発明は、人工知能の分野である制約充足を用いたソフトウェア開発において、解モデルを用いて制約をデバッグする際の表示処理技術に関する。   The present invention relates to a display processing technique for debugging constraints using a solution model in software development using constraint satisfaction, which is the field of artificial intelligence.

制約充足は、解決したい問題を制約変数の集合、各制約変数の値の集合(ドメイン)、および制約変数間の制約の集合という形で定式化し、制約を満たす制約変数の値の組み合せ、つまり前記解決したい問題の解を求める技術である。制約充足の特徴は、問題を正しく定式化できれば、処理手続きを与えずとも正しい解を出力できることにある。従って、正しい解を得るためには、定式化が問題を正しく表現していることを確認する必要がある。しかし、解決したい問題が複雑な場合、制約の数も多くなり複雑になるため、その確認は容易ではない。   Constraint satisfaction is the formulation of a problem to be solved in the form of a set of constraint variables, a set of values of each constraint variable (domain), and a set of constraints between constraint variables. It is a technology that seeks the solution of the problem to be solved. The feature of constraint satisfaction is that if the problem can be formulated correctly, a correct solution can be output without giving a processing procedure. Therefore, in order to obtain a correct solution, it is necessary to confirm that the formulation correctly expresses the problem. However, if the problem to be solved is complicated, the number of constraints increases and the problem becomes complicated, so that confirmation is not easy.

この確認を行う従来の技術として、制約を解モデルの集合に変換し、その解モデルの集合上で制約の誤りを発見する方法(非特許文献1)がある。解モデルは、制約を満たす制約変数の値の組み合わせ、即ち解(のパターン)を表現したものである。例えば、制約変数x,y,zに対する制約(x=y=z)∨((x=6)∧(y≠z))が与えられた場合、解モデルの集合として2つの解モデル(x,y,z)=({α}::{},{α}::{},{α}::{})および(x,y,z)=({6}::{},{α}::{β},{β}::{α})が得られる。   As a conventional technique for performing this confirmation, there is a method (Non-patent Document 1) of converting a constraint into a set of solution models and finding a constraint error on the set of solution models. The solution model expresses a combination of constraint variable values satisfying the constraint, that is, a solution (pattern). For example, when a constraint (x = y = z) ∨ ((x = 6) ∧ (y ≠ z)) for constraint variables x, y, and z is given, two solution models (x, y, z) = ({α} :: {}, {α} :: {}, {α} :: {}) and (x, y, z) = ({6} :: {}, {α } :: {β}, {β} :: {α}).

解モデルにおける各制約変数の値は「肯定集合::否定集合」という形式で記述され、肯定集合はその制約変数が取り得る値を表し、否定集合は取り得ない値を表す。例えば、前者の解モデルの各制約変数の値の肯定集合は変数αを用いて「{α}」なので、この制約は、xとyとzとが等しい値の組み合わせを解とすることが読み取れる。また、後者の解モデルの制約変数yとzの否定集合はそれぞれ、「{β}」,「{α}」となり、zとyの肯定集合要素なので、zとyとが等しくなくxが6の時も解となることが読み取れる。   The value of each constraint variable in the solution model is described in the form of “positive set :: negative set”, where the positive set represents a value that the constraint variable can take and the negative set represents a value that cannot be taken. For example, since the positive set of values of each constraint variable in the former solution model is “{α}” using the variable α, it can be read that this constraint is a combination of values in which x, y, and z are equal. . Further, the negative sets of the constraint variables y and z of the latter solution model are “{β}” and “{α}”, respectively, and z and y are positive set elements, so z and y are not equal and x is 6 It can be seen that the answer is also the case.

このように制約から変換される解モデルの集合は、問題の解の全てのパターンを網羅している。そのため、制約から変換された解モデルの集合中に、本来は解のパターンでない解モデルが含まれていることや本来は解のパターンとなるべき解モデルが含まれていないことを調べる、つまり解モデルを検査することで、正しい解が得られないという制約の誤りを発見できる。
中島、大石、山村「モデル生成にもとづく制約充足の検査手法」人工知能学会 第73回知識ベースシステム研究会資料、SIG−KBS−A504、2006、pp.135−140
A set of solution models converted from constraints in this way covers all patterns of the solution of the problem. Therefore, it is checked whether the set of solution models converted from the constraints includes a solution model that is not originally a solution pattern or does not include a solution model that should originally be a solution pattern. By inspecting the model, you can find the error in the constraint that the correct solution cannot be obtained.
Nakajima, Oishi, and Yamamura “Inspection Method for Constraint Satisfaction Based on Model Generation” Artificial Intelligence Society, 73rd Knowledge Base System Study Group, SIG-KBS-A504, 2006, pp. 135-140

しかし、制約中に出現する制約変数の数が増加すると解モデルを構成する制約変数の値の数も増加し、解モデルの可読性が低下する。また、解モデルの集合の要素数は、制約中に出現する論理記号の選言(“または”,“∨”)の数の増加によって指数オーダーで増加する。このため制約が複雑な場合に、制約を解モデルの集合に変換しただけでは、膨大な解モデルの集合に対して検査を行わなければならず、多大な労力を要していた。   However, as the number of constraint variables appearing in the constraint increases, the number of constraint variable values that constitute the solution model also increases, and the readability of the solution model decreases. In addition, the number of elements in the set of solution models increases in an exponential order with an increase in the number of logical symbol choices (“or”, “∨”) appearing in the constraint. For this reason, if the constraints are complex, simply converting the constraints into a set of solution models requires checking a huge set of solution models, which requires a lot of labor.

また、実際の制約のデバッグでは、解モデルの検査で制約に誤りがあることを発見するだけでなく、誤り部分を特定し、修正する必要がある。さらに、その修正で発見した誤りが修正される保証はないので、修正された制約を再度、解モデルの集合に変換し、検査して正しい解が得られるか確認しなければならない。このように制約の修正を試行錯誤的に行うため、制約とそれを変換した解モデルの集合がデバッグの過程で数多く作成される。これらの制約とその解モデルの集合は、例えば、現在修正中の制約を破棄して、過去に作成した制約に戻って修正をやり直すことや、過去に作成した制約とその解モデルの集合を参照しながら現在の制約を修正することに利用される。   In actual constraint debugging, it is necessary not only to discover that there is an error in the constraint by examining the solution model, but also to identify and correct the error part. Furthermore, since there is no guarantee that the error found by the correction will be corrected, the corrected constraint must be converted again into a set of solution models and checked to see if a correct solution is obtained. In this way, in order to modify the constraints by trial and error, many constraints and a set of solution models obtained by converting the constraints are created in the debugging process. For a set of these constraints and their solution models, for example, discard the constraints that are currently being modified, return to the constraints created in the past, and redo the correction, or refer to the set of constraints and their solution models created in the past It is used to modify current constraints.

前述した従来の技術では、単に制約から解モデルの集合への変換を行うのみで、デバッグの過程で作成される制約とその解モデルを管理し、オペレータからの要求に応じてそれらを比較できるように表示する機構がなかったために、デバッグの過程で作成される過去の制約とその解モデルの集合を利用して、制約のデバッグを行うことができなかった。   With the conventional technology described above, it is possible to manage constraints and their solution models created during the debugging process by simply converting the constraints into a set of solution models, and compare them according to requests from the operator. Because there was no mechanism to display the constraint, it was not possible to debug the constraint using a set of past constraints and their solution models created during the debugging process.

このため、本発明では、制約充足における制約の誤りを解モデルの集合で発見して制約のデバッグを行う時、オペレータからの条件の指定にもとづいて、表示する解モデルや解モデル中の制約変数の値を制限して、制約から変換される解モデルの集合の可読性を高めた形式で表示することと、同一の解モデルの集合を異なる条件のもとで比較できるように表示することと、異なる解モデルの集合を同一の条件のもとで比較できるように表示することとを目的とする。   For this reason, in the present invention, when a constraint error in constraint satisfaction is found in a set of solution models and the constraint is debugged, the solution model to be displayed and the constraint variables in the solution model are displayed based on the specification of the condition from the operator. Displaying the set of solution models transformed from constraints in a more readable form, displaying the same set of solution models so that they can be compared under different conditions, The purpose is to display a set of different solution models so that they can be compared under the same conditions.

上記目的を達成するために、本発明では、制約とその制約を変換した解モデルの集合、解モデルを表示する時の表示方法を記述した表示条件、表示すべき解モデルの条件を記述した検査条件を記憶し管理する処理と、オペレータが指定する制約と表示条件の組み合わせ毎に、あるいは制約と表示条件と検査条件の組み合わせ毎に、指定された制約を変換した解モデルの集合中の解モデルを条件に従って表示する処理とを具備し、管理している解モデルの集合をオペレータからの要求に応じてそれぞれ表示することで、それらを参照し比較することを可能にする。   In order to achieve the above object, in the present invention, a constraint and a set of solution models converted from the constraints, a display condition describing a display method when displaying the solution model, and an inspection describing a condition of the solution model to be displayed A solution model in a set of solution models in which the specified constraints are converted for each combination of constraints and display conditions specified by the operator, or for each combination of constraints and display conditions specified by the operator. And displaying a set of managed solution models in response to a request from the operator so that they can be referred to and compared with each other.

これを可能にするために、本発明では、制約を入力とし、該制約を解モデルの集合に変換して出力する解モデル生成装置と、解モデルの集合および検査条件を入力とし、該解モデルの集合から該検査条件に合致する解モデルを取り出して出力する解モデル検査装置と、前記解モデル生成装置および解モデル検査装置の両方を含むコンピュータもしくは前記解モデル生成装置または解モデル検査装置のいずれか一方を含み且つ他方とネットワークを介して通信可能なコンピュータもしくは前記解モデル生成装置および解モデル検査装置の両方とネットワークを介して通信可能なコンピュータあるいは当該コンピュータとネットワークを介して接続される他のコンピュータとを用いて、以下に述べる処理を行う。   In order to enable this, in the present invention, a constraint model is input, a solution model generation apparatus that converts the constraint into a set of solution models and outputs, a solution model set and a check condition are input, and the solution model A solution model checking device that extracts and outputs a solution model that matches the checking condition from a set of the above, and a computer including both the solution model generating device and the solution model checking device or the solution model generating device or the solution model checking device Or a computer communicable with both the solution model generation device and the solution model checking device via the network, or other computer connected to the computer via the network. The following processing is performed using a computer.

なお、前記コンピュータあるいは当該コンピュータとネットワークを介して接続される他のコンピュータは、後述するように、解モデル生成装置制御手段、成果物管理手段、解モデル表示手段および解モデル検査装置制御手段からなる解モデル表示装置を含むものとする。   The computer or another computer connected to the computer via a network includes solution model generation device control means, product management means, solution model display means, and solution model inspection device control means, as will be described later. A solution model display device is included.

(成果物と解モデルの集合の蓄積)
まず、オペレータは、デバッグの過程で作成される制約、表示条件および検査条件などの成果物を入力装置から入力する。この入力に対して本発明における成果物管理手段は、解モデル生成装置制御手段と連携して、図1の処理フローを実行する。
(Accumulation of a set of deliverables and solution models)
First, an operator inputs deliverables such as constraints, display conditions, and inspection conditions created in the debugging process from the input device. In response to this input, the product management means in the present invention executes the processing flow of FIG. 1 in cooperation with the solution model generation device control means.

即ち、成果物管理手段は、入力された情報の種別を判定し(図1;s11,s12)、表示条件と検査条件が入力された場合は、そのまま記憶装置に出力して記憶させ(図1;s13)、制約が入力された場合は、該入力された制約を解モデル生成装置制御手段へ渡す(図1;s14)。解モデル生成装置制御手段は受け取った制約を解モデル生成装置に送信し(図1;s15)、該解モデル生成装置からその制約を変換した解モデルの集合を受信し、成果物管理手段へ渡す(図1;s16,s17)。成果物管理手段は、入力された制約とその制約を変換した解モデルの集合、およびそれらの対応関係を記憶装置に出力して記憶させる(図1;s13)。   In other words, the product management means determines the type of the input information (FIG. 1; s11, s12), and when the display condition and the inspection condition are input, it is output to the storage device and stored as it is (FIG. 1). S13), when a constraint is input, the input constraint is transferred to the solution model generation device control means (FIG. 1; s14). The solution model generation device control means transmits the received constraints to the solution model generation device (FIG. 1; s15), receives a set of solution models obtained by converting the constraints from the solution model generation device, and passes them to the product management means. (FIG. 1; s16, s17). The deliverable management means outputs and stores the input constraints, a set of solution models obtained by converting the constraints, and their corresponding relationships to the storage device (FIG. 1; s13).

また、オペレータは、表示条件と検査条件を入力する時に、両者を対応付けることができ、その対応関係も記憶装置に出力して記憶できる。この対応関係は、制約を変換した解モデルの集合から検査条件に合致する解モデルのみを表示する時に適用する表示条件を意味している。よって、1つの表示条件に対して、複数の検査条件を対応付けることが可能である。   In addition, when the operator inputs the display condition and the inspection condition, the operator can associate the display condition and the inspection condition, and the correspondence can be output to the storage device and stored. This correspondence relationship means a display condition that is applied when only the solution model that matches the inspection condition is displayed from the set of solution models obtained by converting the constraints. Therefore, it is possible to associate a plurality of inspection conditions with one display condition.

(記憶装置中に記憶された成果物と解モデルの集合のインデックスの表示)
これら記憶装置に蓄積された成果物と解モデルの集合は、成果物管理手段によって、図2の処理フローに従い、対応するインデックスが表示装置に表示される。即ち、成果物管理手段は、記憶装置から成果物と解モデルの集合を取得し(図2;s21)、取得した成果物と解モデルの集合に対応するインデックスを表示装置に表示する(図2;s22)。この表示処理においては、制約と解モデルの集合との対応関係、および表示条件と検査条件の対応関係がわかるように、インデックスを表形式、あるいは木形式のような階層構造で表示する。
(Display of the index of the set of deliverables and solution models stored in the storage device)
The set of deliverables and solution models stored in these storage devices is displayed on the display device by the deliverable management means according to the processing flow of FIG. That is, the deliverable management unit acquires a set of deliverables and solution models from the storage device (FIG. 2; s21), and displays an index corresponding to the acquired set of deliverables and solution models on the display device (FIG. 2). S22). In this display process, the indexes are displayed in a tabular form or a hierarchical structure such as a tree form so that the correspondence between the constraints and the set of solution models and the correspondence between the display conditions and the inspection conditions can be understood.

その表示を見ることで、オペレータは記憶装置中に蓄積されている成果物にはどのようなものがあるのか確認でき、例えば、デバッグにおいて参照したい制約を指定することが可能になる。   By looking at the display, the operator can confirm what kind of deliverables are stored in the storage device, and for example, can designate a constraint to be referred to in debugging.

(記憶装置中に記憶された成果物と解モデルの集合の削除)
オペレータが入力装置から記億装置中の成果物の削除の指示を入力した時、成果物管理手段は、図3の処理フローに従い、選択された成果物を記憶装置から削除する。即ち、成果物管理手段は、削除指示された情報の種別を判定し(図3;s31,s32)、検査条件を削除する場合は、検査条件のみを削除する(図3;s33)。また、制約を削除する場合は、制約とその制約を変換した解モデルの集合の両方を記憶装置から削除する(図3;s34)。表示条件を削除する場合は、削除する表示条件に対応付けられた検査条件がないなら(図3;s35)、表示条件のみを削除し(図3;s36)、ある場合はその表示条件とそれら検査条件の両方を記憶装置から削除する(図3;s37)。
(Deleting a set of deliverables and solution models stored in the storage device)
When the operator inputs an instruction to delete the product in the storage device from the input device, the product management means deletes the selected product from the storage device according to the processing flow of FIG. That is, the product management means determines the type of information instructed to be deleted (FIG. 3; s31, s32), and when deleting the inspection condition, deletes only the inspection condition (FIG. 3; s33). When deleting a constraint, both the constraint and a set of solution models converted from the constraint are deleted from the storage device (FIG. 3; s34). When deleting the display condition, if there is no inspection condition associated with the display condition to be deleted (FIG. 3; s35), only the display condition is deleted (FIG. 3; s36). Both inspection conditions are deleted from the storage device (FIG. 3; s37).

(記憶装置中に記憶された解モデルの集合の表示)
オペレータが入力装置から記憶装置中の制約および表示条件、あるいは制約、表示条件および検査条件のインデックスを選択することで、その条件の組み合せ方に従って、その制約を変換した解モデルの集合を表示装置に表示する。
(Display of a set of solution models stored in the storage device)
The operator selects the constraints and display conditions in the storage device or the indexes of the constraints, display conditions and inspection conditions from the input device, and the set of solution models obtained by converting the constraints according to the combination of the conditions is displayed on the display device. indicate.

この表示処理において、成果物管理手段、解モデル表示手段および解モデル検査装置制御手段は連携して、図4の処理フローを実行する。   In this display process, the product management means, the solution model display means, and the solution model inspection apparatus control means cooperate to execute the processing flow of FIG.

このフローでは、まず選択された制約にもとづいて、成果物管理手段がその制約を変換した解モデルの集合を記憶装置から取得する(図4;s41,s42)。さらに選択された表示条件を記憶装置から取得して(図4;s41,s42)、その解モデルの集合と表示条件を解モデル表示手段へ渡す(図4;s44)。   In this flow, first, based on the selected constraint, the product management means acquires a set of solution models obtained by converting the constraint from the storage device (FIG. 4; s41, s42). Further, the selected display conditions are acquired from the storage device (FIG. 4; s41, s42), and the set of solution models and the display conditions are passed to the solution model display means (FIG. 4; s44).

この際、検査条件が選択されている、あるいは選択された表示条件に検査条件が対応付けられているのなら(図4;s43)、解モデル表示手段へ解モデルの集合を渡す前に、成果物管理手段は前記検査条件を記憶装置から取得し、取得した解モデルの集合と検査条件を解モデル検査装置制御手段へ渡す(図4;s46)。そして解モデル検査装置制御手段は、受け取った解モデルの集合と検査条件を解モデル検査装置に送信し(図4;s47)、該解モデル検査装置から検査条件に合致する解モデルからなる解モデルの集合を受信する(図4;s48)。そして受信した解モデルの集合を成果物管理手段へ渡し、成果物管理手段はs42の処理で記憶装置から取得した解モデルの集合を、新たに取得した解モデルの集合に置き換えて(図4;s49)、解モデル表示手段に渡す(図4;s44)。   At this time, if the inspection condition is selected or the inspection condition is associated with the selected display condition (FIG. 4; s43), the result is obtained before passing the solution model set to the solution model display means. The object management means acquires the inspection conditions from the storage device, and passes the acquired set of solution models and the inspection conditions to the solution model inspection apparatus control means (FIG. 4; s46). Then, the solution model checking device control means transmits the received solution model set and checking conditions to the solution model checking device (FIG. 4; s47), and the solution model comprising the solution model that matches the checking conditions from the solution model checking device. Is received (FIG. 4; s48). Then, the received solution model set is passed to the product management means, and the product management means replaces the solution model set acquired from the storage device in the process of s42 with the newly acquired solution model set (FIG. 4; s49), it is passed to the solution model display means (FIG. 4; s44).

解モデル表示手段は、受け取った表示条件の内容に従って、受け取った解モデルの集合を表示装置に表示する(図4;s45)。   The solution model display means displays the received set of solution models on the display device according to the contents of the received display conditions (FIG. 4; s45).

前述した検査条件とは、解モデルの集合中から取り出して表示したい解モデルの条件を記述したものである。検査条件の記述形式の例としては、データベースにおける問い合わせ、つまりSQLのwhere節のような論理式があげられる。   The above-described inspection conditions describe the conditions of a solution model that is to be extracted from a set of solution models and displayed. As an example of the description format of the inspection condition, there is an inquiry in a database, that is, a logical expression such as a SQL where clause.

また、前述した表示条件とは、解モデルの集合を表示する時の表示方法を記述したもので、以下の条件が記述されたものである。
1.表示する制約変数の値の指定
2.表示する解モデルの直接指定
3.解モデル中の肯定集合あるいは否定集合の要素の表示・非表示の切り替え
4.制約変数の値の表示順
5.集合中の全ての解モデルにおいて、値が空である制約変数の値の表示・非表示の切り替え。
The display condition described above describes the display method when displaying a set of solution models, and describes the following conditions.
1. Specifying the value of the constraint variable to be displayed 2. Direct specification of solution model to be displayed 3. 3. Switching between display and non-display of positive set or negative set elements in the solution model 4. Display order of constraint variable values Show / hide the value of constraint variables whose values are empty in all solution models in the set.

具体例として、2つの解モデルからなる解モデルの集合(x,y,z)=({}::{},{α}::{},{α}::{}),({}::{},{α}::{β},{β}::{α})で説明する。   As a specific example, a set of solution models (x, y, z) consisting of two solution models = ({} :: {}, {α} :: {}, {α} :: {}), ({} :: {}, {α} :: {β}, {β} :: {α}).

1.では、オペレータが表示する制約変数を指定する。例えば、表示する制約変数をxおよびyとすることで、zの値が省略して表示されることになる。つまり、前記解モデルの集合は、表示装置に、(x,y)=({}::{},{α}::{}),({}::{},{α}::{β})と表示される。   1. Then, the constraint variable to be displayed by the operator is specified. For example, when the constraint variables to be displayed are x and y, the value of z is omitted and displayed. That is, the set of solution models is transmitted to the display device by (x, y) = ({} :: {}, {α} :: {}), ({} :: {}, {α} :: { β}).

2.では、オペレータが表示する解モデルを直接指定する。例えば、表示する解モデルを1番目の解モデルと指定することで、前記解モデルの集合の2番目の解モデルは表示が省略される。つまり表示装置には、(x,y,z)=({}::{},{α}::{},{α}::{})の解モデルの集合が表示される。   2. Then, the operator directly specifies the solution model to be displayed. For example, by designating the solution model to be displayed as the first solution model, the display of the second solution model in the set of solution models is omitted. That is, a set of solution models of (x, y, z) = ({} :: {}, {α} :: {}, {α} :: {}) is displayed on the display device.

3.では、解モデル中の肯定集合/否定集合の要素の表示・非表示を指定する。例えば、否定集合を非表示と指定すると、前記解モデルの集合は、表示装置に(x,y,z)=({}::{},{α}::{},{α}::{}),({}::{},{α}::{},{β}::{})と表示され、否定集合の値は省略される。   3. Then, display / non-display of the elements of the positive set / negative set in the solution model is designated. For example, if a negative set is designated as non-display, the solution model set is displayed on the display device as (x, y, z) = ({} :: {}, {α} :: {}, {α} :: {}), ({} :: {}, {α} :: {}, {β} :: {}), and the negative set value is omitted.

4.では、解モデルの各制約変数の値の表示順を指定する。例えば(x,z,y)と順番を指定することで、前記解モデルの集合は、表示装置に、(x,z,y)=({}::{},{α}::{},{α}::{}),({}::{},{β}::{α},{α}::{β})と表示されることになる。   4). Then, the display order of the value of each constraint variable of the solution model is specified. For example, by specifying the order as (x, z, y), the set of solution models is transferred to the display device by (x, z, y) = ({} :: {}, {α} :: {}. , {Α} :: {}), ({} :: {}, {β} :: {α}, {α} :: {β}).

5.では、全ての解モデルの値が空である制約変数の値の表示・非表示を指定する。値が空であるとは、肯定集合と否定集合が空集合、即ち「{}::{}」となる値のことである。空である制約変数の値を非表示にすると、前記解モデルの集合は、xの値が省略され、表示装置に(y,z)=({α}::{},{α}::{}),({α}::{β},{β}::{α})と表示される。   5). Then, display / non-display of constraint variable values for which all solution model values are empty is specified. An empty value is a value in which the positive set and the negative set are empty sets, that is, “{} :: {}”. If the value of an empty constraint variable is hidden, the value of x is omitted from the set of solution models, and (y, z) = ({α} :: {}, {α} :: {}), ({Α} :: {β}, {β} :: {α}).

この表示条件は、解モデル表示手段が保持する解モデルの集合そのものを変更するわけではない。あくまで表示装置に表示する時に、解モデルの集合の表示を制限するために用いられる。   This display condition does not change the solution model set itself held by the solution model display means. It is used to limit the display of a set of solution models when displaying on a display device.

オペレータが入力する制約および表示条件の選択、あるいは制約、表示条件および検査条件の選択の組み合わせにおいては、それぞれ表示条件を省略することができる。省略して制約のみを選択した場合は、図4の処理s44で、事前に設定しておくデフォルトの表示条件を成果物管理手段が解モデル表示手段へ渡す。また、制約および検査条件のみ選択した場合は、成果物管理手段が、検査条件と対応する表示条件が存在するか記憶装置を調べ、存在するならその表示条件を、存在しないならデフォルトの表示条件を解モデル表示手段へ渡す。   In the selection of constraints and display conditions input by the operator, or in the combination of selection of constraints, display conditions, and inspection conditions, the display conditions can be omitted. When only the constraint is selected by omitting, the deliverable management means passes default display conditions set in advance to the solution model display means in the process s44 of FIG. If only constraints and inspection conditions are selected, the product management means checks the storage device for the existence of display conditions corresponding to the inspection conditions. If there are, the display conditions are set, and if not, the default display conditions are set. Pass to solution model display means.

解モデルの集合を表示装置に表示する時、入力された制約および表示条件、あるいは制約、表示条件および検査条件の組み合わせの異なる組み合わせ毎に、解モデルの集合を別画面または別ウインドウに表示する。このようにすることで、同一の制約を変換した解モデルの集合を異なる条件のもとで複数表示することや、いくつかの制約を変換した各解モデルの集合を同一の条件のもとでそれぞれ表示することが可能になり、解モデルの集合を自由に参照できるようになる。   When the set of solution models is displayed on the display device, the set of solution models is displayed on a separate screen or a separate window for each different combination of input constraints and display conditions, or combinations of constraints, display conditions, and inspection conditions. In this way, multiple sets of solution models converted with the same constraints can be displayed under different conditions, or sets of solution models converted with some constraints can be displayed under the same conditions. Each can be displayed, and a set of solution models can be freely referred to.

(表示中の解モデルの集合の表示条件の変更とその変更の画面への反映)
ある表示条件のもとで、ある解モデルの集合を表示装置に表示している時、入力装置からオペレータが前記表示条件の1.〜5.の条件の変更を入力すると、成果物管理手段と解モデル表示手段が連携して図5の処理フローを実行し、表示装置におけるその解モデルの集合の表示に変更を反映させる。まず、成果物管理手段は、入力装置から入力された表示条件の変更内容を解モデル表示手段に指示する(図5;s51,s52)。解モデル表示手段は、表示中の解モデルの集合の表示条件に前記表示条件の変更内容を反映させ(図5;s53)、変更後の表示条件のもとで、解モデルの集合を表示装置に再表示する(図5;s54)。
(Changes in the display conditions of the set of solution models being displayed and the changes are reflected on the screen)
When a set of a certain solution model is displayed on the display device under a certain display condition, the operator can input the above-described 1. ~ 5. When the condition change is input, the product management means and the solution model display means cooperate to execute the processing flow of FIG. 5 and reflect the change in the display of the set of solution models on the display device. First, the deliverable management means instructs the solution model display means about the change contents of the display condition input from the input device (FIG. 5; s51, s52). The solution model display means reflects the change contents of the display conditions in the display conditions of the set of solution models being displayed (FIG. 5; s53), and displays the set of solution models under the display conditions after the change. Is displayed again (FIG. 5; s54).

この時、変更された表示条件は、図6の処理フローに示すように、オペレータが入力装置から保存の指示を入力することで解モデル表示手段から成果物管理手段に渡され(図6;s61,s62)、成果物管理手段が記憶装置に出力して記憶させる(図6;s63)。   At this time, as shown in the processing flow of FIG. 6, the changed display condition is transferred from the solution model display means to the deliverable management means when the operator inputs a storage instruction from the input device (FIG. 6; s61). , S62), the product management means outputs to the storage device and stores it (FIG. 6; s63).

本発明によれば、制約充足における制約の誤りを解モデルの検査で発見し制約のデバッグを行う場合に、解モデルの集合をオペレータが指定する形式で表示できるようになり、解モデルの集合の可読性を高めることができる。また、解モデルの集合を複数表示できるようになるため、これらを参照し比較しながら制約のデバッグを行えるようになる。   According to the present invention, when a constraint error in constraint satisfaction is found by inspecting a solution model and the constraint is debugged, a set of solution models can be displayed in a format specified by the operator. Readability can be improved. In addition, since a plurality of sets of solution models can be displayed, it is possible to debug constraints while referring to and comparing them.

図7は本発明の制約充足における解モデルの表示処理方法を実施する装置の実施の形態の一例を示すもので、図中、1は入力装置、2は表示装置、3は解モデル生成装置、4は解モデル検査装置、5はコンピュータである。   FIG. 7 shows an example of an embodiment of an apparatus for executing a solution model display processing method according to the constraint satisfaction of the present invention, in which 1 is an input device, 2 is a display device, 3 is a solution model generation device, 4 is a solution model checking device, and 5 is a computer.

入力装置1は、オペレータがコンピュータ5に所定の情報、ここでは制約、表示条件、検査条件などの成果物や、それら成果物の表示と削除の指示、表示中の解モデルの集合の表示条件の変更指示などを入力するためのものである。表示装置2は、コンピュータ5の所定の処理結果、ここでは入力された成果物のインデックスや、オペレータが指定した制約を変換した解モデルの集合を、同じくオペレータが指定した表示条件や検査条件にもとづいて表示し、オペレータに提示するためのものである。   The input device 1 allows the operator to input predetermined information to the computer 5, here, the deliverables such as constraints, display conditions, and inspection conditions, instructions for displaying and deleting these deliverables, and the display conditions for the set of solution models being displayed. This is for inputting change instructions. The display device 2 uses a predetermined processing result of the computer 5, here an index of the input product and a set of solution models obtained by converting constraints specified by the operator, based on display conditions and inspection conditions specified by the operator. Is displayed and presented to the operator.

解モデル生成装置3は、制約を入力とし、その制約を解モデルの集合に変換して出力するためのものである。   The solution model generation device 3 receives constraints and converts the constraints into a set of solution models for output.

解モデル検査装置4は、解モデルの集合および検査条件を入力とし、その解モデルの集合から該検査条件に合致する解モデルを取り出して出力するためのものである。   The solution model checking device 4 receives a set of solution models and check conditions, takes out a solution model that matches the check conditions from the set of solution models, and outputs it.

コンピュータ5は、図1乃至図6に示した処理フローに対応する所定のプログラムに従い各装置を制御するとともに、この際、記憶装置6および解モデル表示装置7を構成する。   The computer 5 controls each device in accordance with a predetermined program corresponding to the processing flow shown in FIGS. 1 to 6, and configures the storage device 6 and the solution model display device 7 at this time.

記憶装置6は、入力装置1より入力される成果物や、解モデル生成装置3が変換した解モデルの集合を記憶するためのものである。   The storage device 6 is for storing a product input from the input device 1 and a set of solution models converted by the solution model generation device 3.

解モデル表示装置7は、解モデル生成装置制御手段71、成果物管理手段72、解モデル表示手段73および解モデル検査装置制御手段74を備え、図1乃至図6に示した処理フローに対応する機能、即ち入力装置1から入力された制約、表示条件、検査条件等の成果物を記憶装置6に出力して記憶させ、入力装置1から入力された制約を解モデル生成装置3に送信し、該解モデル生成装置3から前記制約を変換した解モデルの集合を受信し、その解モデルの集合を記憶装置6に出力して記憶させ、記憶装置に記憶されている前記成果物と解モデルの集合にそれぞれ対応するインデックスを表示装置2に表示し、入力装置1で選択されたインデックスに対応する制約、表示条件、検査条件に応じて、それぞれ、その制約を変換した解モデルの集合、表示条件、検査条件を記憶装置6から取得し、取得した解モデルの集合および検査条件を解モデル検査装置4に送信し、該解モデル検査装置4から前記検査条件に合致する解モデルの集合を受信し、記憶装置6から取得した解モデルの集合、あるいは解モデル検査装置4から受信した解モデルの集合を表示条件に従って表示装置2に表示し、さらに、入力装置1から入力された表示中の解モデルの集合の表示条件の変更指示に対応して、変更された表示条件のもとで表示装置2にその解モデルの集合を再表示させる機能を有する。   The solution model display device 7 includes solution model generation device control means 71, product management means 72, solution model display means 73, and solution model inspection device control means 74, and corresponds to the processing flow shown in FIGS. Functions, that is, deliverables such as constraints, display conditions, inspection conditions and the like input from the input device 1 are output and stored in the storage device 6, and the constraints input from the input device 1 are transmitted to the solution model generation device 3, A set of solution models obtained by converting the constraints is received from the solution model generation device 3, the solution model set is output to the storage device 6 and stored, and the product and the solution model stored in the storage device are stored. An index corresponding to each set is displayed on the display device 2, and according to the constraint, display condition, and inspection condition corresponding to the index selected by the input device 1, a solution model obtained by converting the constraint respectively. In this case, the display condition and the inspection condition are acquired from the storage device 6, the acquired set of solution models and the inspection condition are transmitted to the solution model inspection device 4, and the solution model that matches the inspection condition is transmitted from the solution model inspection device 4. The set of solution models received from the storage device 6 or the set of solution models received from the solution model checking device 4 is displayed on the display device 2 according to the display conditions, and the display input from the input device 1 In response to an instruction to change the display conditions of the set of solution models, the display device 2 has a function of redisplaying the set of solution models under the changed display conditions.

詳細には、解モデル生成装置制御手段71は、成果物管理手段72から渡される制約を解モデル生成装置3に送信し、その制約を変換した解モデルの集合を受信し、これを成果物管理手段72へ渡す。   Specifically, the solution model generation device control unit 71 transmits the constraints passed from the product management unit 72 to the solution model generation device 3, receives a set of solution models obtained by converting the constraints, and uses this as a product management. Pass to means 72.

成果物管理手段72は、入力装置1より入力された制約、表示条件、検査条件および前記受信した解モデルの集合を記憶装置6に出力して記憶させ、記憶装置6に記憶されている制約、表示条件、検査条件および解モデルの集合を、入力装置1から選択可能とするためにそれぞれ対応するインデックスを表示装置2に表示し、入力装置1で選択されたインデックスに対応する制約、表示条件および検査条件から、記憶装置6に記億されている制約を変換した解モデルの集合、表示条件、検査条件を探索し、該探索した解モデルの集合および検査条件を解モデル検査装置制御手段74を介して解モデル検査装置4に送信し、該解モデルの集合中から検査条件に合致する解モデルの集合を受信し、記憶装置6から取得した解モデルの集合および表示条件、あるいは解モデル検査装置4を用いて取得した検査条件に合致する解モデルの集合および表示条件を解モデル表示手段73へ渡す。   The deliverable management means 72 outputs the constraints, display conditions, inspection conditions and the received solution model set received from the input device 1 to the storage device 6 for storage, and the constraints stored in the storage device 6; In order to make it possible to select a set of display conditions, inspection conditions, and solution models from the input device 1, corresponding indexes are displayed on the display device 2, constraints corresponding to the indexes selected by the input device 1, display conditions, and A set of solution models, display conditions, and inspection conditions obtained by converting the constraints stored in the storage device 6 are searched from the inspection conditions, and the solution model inspection apparatus control means 74 determines the set of solution models and the inspection conditions that have been searched. To the solution model checking device 4, receive a set of solution models that match the checking conditions from the set of solution models, and obtain a set and table of solution models obtained from the storage device 6. Conditions, or passing a set and a display condition for solution model that matches the acquired inspection conditions using a solution model test apparatus 4 to the solution model display unit 73.

解モデル表示手段73は、受け取った解モデルの集合を表示条件に従って表示装置2に表示し、表示装置2に表示中の解モデルの集合の表示方法の変更が入力装置1から入力された場合は、その変更を反映した表示条件のもとでその解モデルの集合を表示装置2に再表示する。   The solution model display means 73 displays the received solution model set on the display device 2 in accordance with the display conditions, and when the change of the display method of the solution model set currently displayed on the display device 2 is input from the input device 1. The set of solution models is redisplayed on the display device 2 under the display conditions reflecting the change.

解モデル検査装置制御手段74は、成果物管理手段72から渡される解モデルの集合および検査条件を解モデル検査装置4に送信し、検査条件に合致する解モデルの集合を受信し、これを成果物管理手段72へ渡す。   The solution model checking device control means 74 transmits the set of solution models and the checking conditions passed from the product management means 72 to the solution model checking device 4, receives the set of solution models that match the checking conditions, and outputs the results. It passes to the thing management means 72.

本装置により、制約充足における制約の誤りを解モデルの検査で発見し制約のデバッグを行う場合に、解モデルの集合をオペレータが指定する形式で表示できるようになり、解モデルの集合の可読性を高めることができる。また、解モデルの集合を複数表示できるようになるため、これらを参照し比較しながら制約のデバッグを行えるようになる。   With this device, when a constraint error in constraint satisfaction is discovered by inspection of the solution model and the constraint is debugged, the set of solution models can be displayed in a format specified by the operator, and the readability of the set of solution models can be improved. Can be increased. In addition, since a plurality of sets of solution models can be displayed, it is possible to debug constraints while referring to and comparing them.

なお、前述した実施の形態では、1つのコンピュータ5に記録媒体もしくは通信回線を介して、図1乃至図6のフローに示された手順を備えるプログラムをインストールすることによって記憶装置6および解モデル表示装置7を実現した例を示したが、適切な通信路で相互に接続された複数のハードウェア上に分散して実現してもよい。また、前述した実施の形態では、解モデル生成装置3および解モデル検査装置4をコンピュータ5とは別の装置として実装し、適切な通信路でコンピュータ5(内の各装置)と接続するようにした例を示したが、これらのいずれか一方もしくは両方を記憶装置6および解モデル表示装置7とともにコンピュータ5上に実現するようにしても良い。また、解モデル表示装置7における各手段は、適切な通信路で相互に接続された複数のハードウェア上に分散して存在し、相互に通信し合いながら実行することもできる。   In the above-described embodiment, the storage device 6 and the solution model display are displayed by installing a program having the procedure shown in the flow of FIGS. 1 to 6 in one computer 5 via a recording medium or a communication line. Although the example which implement | achieved the apparatus 7 was shown, you may disperse | distribute and implement | achieve on the some hardware mutually connected by the suitable communication path. Further, in the above-described embodiment, the solution model generation device 3 and the solution model checking device 4 are mounted as devices separate from the computer 5 and connected to the computer 5 (each device) through an appropriate communication path. Although one or both of these may be realized on the computer 5 together with the storage device 6 and the solution model display device 7. Further, each means in the solution model display device 7 exists in a distributed manner on a plurality of hardware connected to each other through an appropriate communication path, and can be executed while communicating with each other.

本発明による制約のデバッグについて例を挙げて説明する。   An example of the constraint debugging according to the present invention will be described.

まず、前提として既に、制約1〜3、表示条件1、検査条件1〜3が本発明の解モデル表示装置7にファイルとして入力されており、表示条件1に対して検査条件2および3が対応付けられているとする。この時、記憶装置6には、図8に示すように、これらのファイルおよび制約を変換した解モデルの集合(それぞれ解モデルの集合1から3とする)のファイル11,12,13,14が記憶されており、さらに、それらの対応関係に関しては、例えば対応表15,16として記憶されているものとする。   First, as a premise, the constraints 1 to 3, the display condition 1, and the inspection conditions 1 to 3 are already input as files in the solution model display device 7 of the present invention, and the inspection conditions 2 and 3 correspond to the display condition 1. Suppose that it is attached. At this time, as shown in FIG. 8, the storage device 6 has files 11, 12, 13, and 14 of a set of solution models (solution models 1 to 3) converted from these files and constraints. Further, it is assumed that the correspondence relations are stored as correspondence tables 15 and 16, for example.

この状態からオペレータが制約4「(x=y=z)∨((x=6)∧(y≠z))」を作成し、ファイルとして入力装置1から入力すると、図1のs11,s12,s14,s15,s16,s17,s13と順に実行し、記憶装置6に制約4のファイルおよび制約4を変換した解モデルの集合4のファイルを図8のファイル11および12に追加する。この時、非特許文献1の記述に従って、各制約変数の値を「肯定集合::否定集合」という形式で、解モデルの集合4の内容を記述すると、「(x,y,z)=({α}::{},{α}::{},{α}::{}),({6}::{},{α}::{β},{β}::{α})」となる。また,制約4と解モデルの集合4との対応関係を図8の制約と解モデルの集合の対応表15に追加する。この時の記憶装置6内の状態を図9に示す。   From this state, when the operator creates the constraint 4 “(x = y = z) ∨ ((x = 6) ∧ (y ≠ z))” and inputs it as a file from the input device 1, s11, s12, The processing is executed in the order of s14, s15, s16, s17, and s13, and the file of the constraint 4 and the file of the solution model set 4 obtained by converting the constraint 4 are added to the files 11 and 12 in FIG. At this time, according to the description of Non-Patent Document 1, the value of each constraint variable is described in the form of “positive set :: negative set” and the contents of the solution model set 4 are described as “(x, y, z) = ( {Α} :: {}, {α} :: {}, {α} :: {}), ({6} :: {}, {α} :: {β}, {β} :: {α }) ”. Further, the correspondence relationship between the constraint 4 and the solution model set 4 is added to the correspondence table 15 of the constraint and solution model set shown in FIG. The state in the storage device 6 at this time is shown in FIG.

さらに検査条件4「xの値における肯定集合が{6}」および表示条件2「表示順(x,z,y)、表示する制約変数の値(x,z)、否定集合を非表示」を、それぞれファイルとして入力装置1から入力すると、図1のs11,s12,s13と順に実行して、記憶装置6にこれらのファイルが追加される。さらに検査条件4が表示条件2と同時に入力されたので、両者に対応関係があるとみなし、図8の検査条件と表示条件の対応表16に、検査条件4と表示条件2の対応関係を追加する。この時の記憶装置6内の状態を図10に示す。   Furthermore, the inspection condition 4 “positive set in the value of x is {6}” and display condition 2 “display order (x, z, y), value of constraint variable to be displayed (x, z), non-display of negative set” are displayed. When the files are input from the input device 1 as files, these files are added to the storage device 6 in the order of s11, s12, and s13 in FIG. Further, since the inspection condition 4 is input at the same time as the display condition 2, it is considered that there is a correspondence between the two, and the correspondence between the inspection condition 4 and the display condition 2 is added to the correspondence table 16 of the inspection condition and the display condition in FIG. To do. The state in the storage device 6 at this time is shown in FIG.

解モデル表示装置7は、記憶装置6に記憶されているファイルのインデックスとそれらの対応関係を、例えば図11に示すような階層形式で表示装置2に表示する。図11はGUIあるいはCUIを備え、その画面上からオペレータは、デバッグ作業で参照したい制約などの選択を行うことができ、その制約を変換した解モデルの集合を表示させることが可能である。   The solution model display device 7 displays the indexes of the files stored in the storage device 6 and their corresponding relationships on the display device 2 in a hierarchical format as shown in FIG. 11, for example. FIG. 11 includes a GUI or CUI. From the screen, the operator can select a constraint or the like to be referred to in the debugging work, and can display a set of solution models obtained by converting the constraint.

単純に制約4のみを選択した場合、表示条件を「全ての内容を制限なく表示する」として、解モデル表示装置7は図4のs41,s42,s43,s44,s45を実行し、例えば、図12に示すような表形式で、制約4と対応する解モデルの集合4を表示装置2に表示する。図12の表は、2行で1つの解モデルを表現しており、上段が各制約変数の値の肯定集合、下段が否定集合になっている。図12の解モデル1は前記解モデルの集合4の要素である解モデル(x,y,z)=({α}::{},{α}::{},{α}::{})を表しており、図12の解モデル2は解モデル(x,y,z)=({6}::{},{α}::{β},{β}::{α})を表している。   When only constraint 4 is simply selected, the solution model display device 7 executes s41, s42, s43, s44, and s45 in FIG. 4, assuming that the display condition is “display all contents without limitation”. A set 4 of solution models corresponding to the constraint 4 is displayed on the display device 2 in a table format as shown in FIG. The table of FIG. 12 represents one solution model with two rows, the upper row being a positive set of the values of each constraint variable and the lower row being a negative set. The solution model 1 in FIG. 12 is an element of the solution model set 4, which is the solution model (x, y, z) = ({α} :: {}, {α} :: {}, {α} :: { }), And the solution model 2 in FIG. 12 is the solution model (x, y, z) = ({6} :: {}, {α} :: {β}, {β} :: {α} ).

制約4と表示条件2を組み合わせて入力した場合、解モデル表示装置7は図4のs41,s42,s43,s44,s45を実行し、表示条件2に従って、解モデルの集合4を表示する。表示条件2は、表示順(x,z,y)という指定があるので、図12のカラムのzとyを入れ替えた状態で表示する。また、表示する制約変数の値はxおよびzに関するものだけなので、yのカラムを表示しない。さらに、否定集合は表示しないため、解モデル1と解モデル2の下段は表示しない。従って、制約4と表示条件2を組み合わせた場合に表示装置に表示される解モデルの集合4は、図13に示すようになる。   When the constraint 4 and the display condition 2 are input in combination, the solution model display device 7 executes s41, s42, s43, s44, and s45 in FIG. 4 and displays the solution model set 4 according to the display condition 2. Since the display condition 2 is designated as the display order (x, z, y), it is displayed in a state where z and y in the column of FIG. 12 are exchanged. Further, since the values of constraint variables to be displayed are only those relating to x and z, the y column is not displayed. Further, since the negative set is not displayed, the lower part of the solution model 1 and the solution model 2 is not displayed. Therefore, a set 4 of solution models displayed on the display device when the constraint 4 and the display condition 2 are combined is as shown in FIG.

制約4と表示条件2と検査条件4を組み合わせて入力した場合は、解モデル表示装置7は図4のs41,s42,s43,s46,s47,s48,s49,s44,s45と順に実行する。この時、s46からs49の処理において、解モデルの集合4の中から、検査条件4「xの値における肯定集合が{6}」に合致する解モデル、即ち(x,y,z)=({6}::{},{α}::{β},{β}::{α})が取り出されるため、図12における解モデル2を表示条件2に従って表示することになる。従って、制約4と表示条件2と検査条件4を組み合わせた場合に表示装置2に表示される解モデルの集合4は、図14に示すようになる。   When the constraint 4, the display condition 2, and the inspection condition 4 are input in combination, the solution model display device 7 sequentially executes s41, s42, s43, s46, s47, s48, s49, s44, and s45 in FIG. At this time, in the processing from s46 to s49, from the solution model set 4, the solution model that matches the inspection condition 4 “the positive set in the value of x is {6}”, that is, (x, y, z) = ( {6} :: {}, {α} :: {β}, {β} :: {α}) are taken out, so that the solution model 2 in FIG. Accordingly, a set 4 of solution models displayed on the display device 2 when the constraint 4, the display condition 2, and the inspection condition 4 are combined is as shown in FIG.

このようにして、解モデルの集合が含む解モデルの数が膨大になった場合や、制約変数の数が増加し解モデルの値の数が多い場合でも、解モデルの集合の表示させたい情報を表示条件や検査条件として指定することで、検査に必要な情報のみを表示させることができ、検査を簡単に行うことができるようになる。   In this way, even when the number of solution models included in the solution model set is enormous or when the number of constraint variables increases and the number of solution model values is large, the information that you want to display the set of solution models By specifying as a display condition or an inspection condition, only information necessary for the inspection can be displayed, and the inspection can be easily performed.

また、図12から図14をそれぞれ別画面や別ウインドウに表示させ、オペレータが表示を切り替えることで、各条件にもとづいて表示された解モデルの集合4を比較することができるようになる。   Also, FIGS. 12 to 14 are displayed on different screens and windows, respectively, and the operator switches the display, so that the set 4 of solution models displayed based on each condition can be compared.

もし、表示条件1と、それぞれ制約1、制約2、制約3、制約4の組み合わせを選択した場合、表示条件1のもとで解モデルの集合1から4をそれぞれ別画面や別ウインドウに表示させ、オペレータが表示を切り替えることで、表示条件1にもとづいて表示装置に表示された各解モデルの集合を比較することができるようになる。   If display condition 1 and a combination of constraint 1, constraint 2, constraint 3, and constraint 4 are selected, solution sets 1 to 4 are displayed on different screens or windows under display condition 1, respectively. By switching the display, the operator can compare sets of solution models displayed on the display device based on the display condition 1.

本発明装置では、表示装置2に表示中の解モデルの集合の表示方法を変更し、それをすぐさま表示装置2に反映することができる。例えば、図14が表示装置2に表示されている時、オペレータが否定集合を表示するように入力装置1から表示方法の変更を指示したとすると、図5の各処理を行って、図14において表示されていない解モデル2の下段を表示させることができる。   In the device of the present invention, the display method of the set of solution models being displayed on the display device 2 can be changed and reflected on the display device 2 immediately. For example, if FIG. 14 is displayed on the display device 2 and the operator instructs the display device to change the display method so as to display a negative set, the processing of FIG. The lower part of the solution model 2 that is not displayed can be displayed.

この時、表示条件は「表示順(x,z,y)、表示する制約変数の値(x,z)」となっており、オペレータはこれの保存を入力装置1から指示し、解モデル表示装置7が図6の処理を実行することで、表示条件3として記憶装置6に保存することができる。   At this time, the display conditions are “display order (x, z, y), constraint variable values to be displayed (x, z)”, and the operator instructs the storage from the input device 1 to display the solution model. When the device 7 executes the processing of FIG. 6, the display condition 3 can be stored in the storage device 6.

また、オペレータは、図11の画面上から、削除する制約、表示条件、検査条件を選択できる。例えば、制約1を選択した場合は、図3のs31,s32,s34の処理が実行され、制約1と解モデルの集合1のファイルが記憶装置6から削除され、さらに図10の制約と解モデルの集合の対応表15から制約1と解モデルの集合1との対応関係を示す行が削除される。この時の記憶装置6内の状態を図15に示す。   Further, the operator can select restrictions, display conditions, and inspection conditions to be deleted from the screen of FIG. For example, when the constraint 1 is selected, the processing of s31, s32, and s34 in FIG. 3 is executed, the file of the constraint 1 and the solution model set 1 is deleted from the storage device 6, and the constraint and the solution model in FIG. The row indicating the correspondence between the constraint 1 and the solution model set 1 is deleted from the set correspondence table 15. The state in the storage device 6 at this time is shown in FIG.

上記のように、制約のデバッグの過程で作成される成果物を管理することで、解モデルの集合を参照しつつ、デバッグを進めることが可能になる。   As described above, by managing the artifacts created in the process of constraint debugging, it is possible to proceed with debugging while referring to a set of solution models.

本発明の制約充足における解モデルの表示処理方法の処理のフローを示す図The figure which shows the flow of a process of the display processing method of the solution model in constraint satisfaction of this invention 本発明の制約充足における解モデルの表示処理方法の処理のフローを示す図The figure which shows the flow of a process of the display processing method of the solution model in constraint satisfaction of this invention 本発明の制約充足における解モデルの表示処理方法の処理のフローを示す図The figure which shows the flow of a process of the display processing method of the solution model in constraint satisfaction of this invention 本発明の制約充足における解モデルの表示処理方法の処理のフローを示す図The figure which shows the flow of a process of the display processing method of the solution model in constraint satisfaction of this invention 本発明の制約充足における解モデルの表示処理方法の処理のフローを示す図The figure which shows the flow of a process of the display processing method of the solution model in constraint satisfaction of this invention 本発明の制約充足における解モデルの表示処理方法の処理のフローを示す図The figure which shows the flow of a process of the display processing method of the solution model in constraint satisfaction of this invention 本発明の制約充足における解モデルの表示処理装置の実施の形態の一例を示す構成図The block diagram which shows an example of embodiment of the display processing apparatus of the solution model in the constraint satisfaction of this invention 記憶装置に保存されている情報の一例を示す説明図Explanatory drawing which shows an example of the information preserve | saved at the memory | storage device 記憶装置に保存されている情報の一例を示す説明図Explanatory drawing which shows an example of the information preserve | saved at the memory | storage device 記憶装置に保存されている情報の一例を示す説明図Explanatory drawing which shows an example of the information preserve | saved at the memory | storage device 記憶装置に保存されているファイルのインデックスの表示例を示す説明図Explanatory drawing which shows the example of a display of the index of the file preserve | saved at the memory | storage device 解モデルの集合の表示例を示す説明図Explanatory drawing showing a display example of a set of solution models 解モデルの集合の表示例を示す説明図Explanatory drawing showing a display example of a set of solution models 解モデルの集合の表示例を示す説明図Explanatory drawing showing a display example of a set of solution models 記憶装置に保存されている情報の一例を示す説明図Explanatory drawing which shows an example of the information preserve | saved at the memory | storage device

符号の説明Explanation of symbols

1:入力装置、2:表示装置、3:解モデル生成装置、4:解モデル検査装置、5:コンピュータ、6:記憶装置、7:解モデル表示装置、71:解モデル生成装置制御手段、72:成果物管理手段、73:解モデル表示手段、74:解モデル検査装置制御手段。   1: input device, 2: display device, 3: solution model generation device, 4: solution model checking device, 5: computer, 6: storage device, 7: solution model display device, 71: solution model generation device control means, 72 : Product management means, 73: solution model display means, 74: solution model inspection device control means.

Claims (10)

解決したい問題を制約変数の集合、各制約変数の値の集合および制約変数間の制約の集合という形で定式化し、制約を満たす制約変数の値の組み合せである前記問題の解を求める制約充足における制約のデバッグを行うに当たって、前記問題の解のパターンを表現した解モデルの集合中に、本来は解のパターンでない解モデルが含まれていることや本来は解のパターンとなるべき解モデルが含まれていないことを調べて制約の誤りを発見し、誤り部分を特定するために、前記制約および当該制約に対応する解モデルの集合とともに、解モデルを表示する時の表示方法を記述した表示条件、あるいはこれに加えて表示すべき解モデルの条件を記述した検査条件を用いて、指定された制約に対応する解モデルの集合を指定された表示条件に従って表示し、あるいは指定された制約に対応する解モデルの集合のうち、指定された検査条件に合致する解モデルの集合を指定された表示条件に従って表示する方法であって、
制約を入力とし、該制約を解モデルの集合に変換して出力する解モデル生成装置と、
解モデルの集合および検査条件を入力とし、該解モデルの集合から該検査条件に合致する解モデルを取り出して出力する解モデル検査装置と、
前記解モデル生成装置および解モデル検査装置の両方を含む一のコンピュータもしくは前記解モデル生成装置または解モデル検査装置のいずれか一方を含み且つ他方とネットワークを介して通信可能な一のコンピュータもしくは前記解モデル生成装置および解モデル検査装置の両方とネットワークを介して通信可能な一のコンピュータのいずれかを用い、あるいは前記一のコンピュータのいずれかとともに当該一のコンピュータのいずれかとネットワークを介して接続される他のコンピュータを用い、
前記一のコンピュータのいずれか、あるいは前記一のコンピュータのいずれかとネットワークを介して接続される他のコンピュータが、
入力装置から入力された制約を前記解モデル生成装置に送信し、該解モデル生成装置から前記制約を変換した解モデルの集合を受信する解モデル生成装置制御ステップと、
入力装置から入力された制約または表示条件または検査条件または前記解モデル生成装置から受信した解モデルの集合を記憶装置に出力して記憶させ、該記憶装置に記憶された制約、表示条件、検査条件および解モデルの集合にそれぞれ対応するインデックスを表示装置に表示し、入力装置で選択されたインデックスに対応する制約、解モデルの集合および表示条件、あるいは制約、解モデルの集合、表示条件および検査条件を記憶装置から取得する成果物管理ステップと、
記憶装置から制約、解モデルの集合、表示条件および検査条件を取得した場合のみ当該記憶装置から取得した解モデルの集合および検査条件を前記解モデル検査装置に送信し、該解モデル検査装置から前記検査条件に合致する解モデルの集合を受信する解モデル検査装置制御ステップと、
記憶装置から取得した解モデルの集合、あるいは前記解モデル検査装置から受信した解モデルの集合を、記憶装置から取得した表示条件に従って表示装置に表示する解モデル表示ステップとを実行する
ことを特徴とする制約充足における解モデルの表示処理方法。
The problem to be solved is formulated in the form of a set of constraint variables, a set of values for each constraint variable, and a set of constraints between constraint variables, and in constraint satisfaction to find a solution of the problem that is a combination of the values of constraint variables that satisfy the constraints When debugging constraints, the set of solution models expressing the solution pattern of the problem includes a solution model that is not originally a solution pattern or a solution model that should originally be a solution pattern. Display conditions describing the display method when displaying the solution model, together with a set of solution models corresponding to the constraint and the constraint, in order to find out the error of the constraint by checking that it is not Or, in addition to this, a set of solution models corresponding to the specified constraints is used according to the specified display conditions using the inspection conditions describing the conditions of the solution model to be displayed. Shown, or out of the set of solutions model corresponding to the specified constraint, a method of displaying in accordance with the display condition to the specified set of solutions model that matches the specified test conditions,
A solution model generation device that takes constraints as input, converts the constraints into a set of solution models, and outputs them;
A solution model checking device that takes a set of solution models and check conditions as inputs, and extracts and outputs a solution model that matches the check conditions from the set of solution models;
One computer or the solution model generating device or a computer or the solutions which can communicate via and the other network comprises one of a solution model checking device that includes both the solution model generating apparatus and resolution model checking device using any communicable one computer through both the network model generating device and solution models testing device, or any of the one computer and is connected via a network with either the one computer using other computers that,
Any one of the one computers or another computer connected to any one of the one computers via a network,
A solution model generation device control step of transmitting constraints input from the input device to the solution model generation device and receiving a set of solution models obtained by converting the constraints from the solution model generation device;
Constraints, display conditions or inspection conditions input from the input device, or a set of solution models received from the solution model generation device is output to the storage device and stored, and the constraints, display conditions, and inspection conditions stored in the storage device And an index corresponding to each set of solution models are displayed on the display device, and a constraint, a set of solution models and display conditions corresponding to the index selected by the input device, or a set of constraints, solution models, display conditions and check conditions A product management step for acquiring the data from the storage device;
Only when constraints, a set of solution models, display conditions, and inspection conditions are acquired from the storage device, the set of solution models and inspection conditions acquired from the storage device are transmitted to the solution model inspection device, and the solution model inspection device A solution model checking device control step for receiving a set of solution models that match the checking conditions;
A solution model display step of displaying a set of solution models acquired from the storage device or a set of solution models received from the solution model checking device on a display device according to display conditions acquired from the storage device, Display processing method of solution model in satisfying constraint.
前記成果物管理ステップは、入力装置で選択されたインデックスに対応する制約を変換した解モデルの集合を一意に特定できるように、解モデル生成装置における制約と解モデルの集合との対応関係も記憶装置に出力して記憶させる
ことを特徴とする請求項1記載の制約充足における解モデルの表示処理方法。
The deliverable management step also stores a correspondence relationship between the constraint in the solution model generation device and the solution model set so that the solution model set obtained by converting the constraint corresponding to the index selected by the input device can be uniquely identified. The display processing method of a solution model in constraint satisfaction according to claim 1, wherein the display is output and stored in a device.
前記成果物管理ステップは、入力装置で選択されたインデックスに対応する検査条件と関係する表示条件を一意に特定でき、表示条件の選択が省略できるように、表示条件と検査条件との対応関係も記憶装置に出力して記憶させる
ことを特徴とする請求項1記載の制約充足における解モデルの表示処理方法。
The deliverable management step can also uniquely identify the display condition related to the inspection condition corresponding to the index selected by the input device, and the correspondence between the display condition and the inspection condition can be omitted so that the selection of the display condition can be omitted. The solution model display processing method for constraint satisfaction according to claim 1, wherein the solution model is output and stored in a storage device.
前記解モデル表示ステップは、表示すべき制約変数の値と解モデルの指定、肯定集合あるいは否定集合の要素の表示・非表示の切り替え、制約変数の値の表示順、および全ての解モデルにおいて値が空である制約変数の値の表示・非表示の切り替え等の条件を記載した表示条件に従って、制約を変換した解モデルの集合中の各解モデルを表示装置に表示する
ことを特徴とする請求項1記載の制約充足における解モデルの表示処理方法。
In the solution model display step, the value of the constraint variable to be displayed and the solution model are specified, the display of the positive set or negative set is displayed / hidden, the display order of the value of the constraint variable, and the value in all the solution models The display of each solution model in the set of solution models into which constraints are converted according to display conditions describing conditions such as display / non-display switching of the value of a constraint variable whose value is empty The display processing method of the solution model in the satisfaction of restrictions of claim | item 1.
前記解モデル表示ステップは、入力装置で選択されたインデックスに対応する制約、表示条件、検査条件の組み合わせが異なる毎に、制約を変換した解モデルの集合を表示装置に別画面または別ウインドウで表示する
ことを特徴とする請求項1記載の制約充足における解モデルの表示処理方法。
In the solution model display step, each time a combination of constraints, display conditions, and inspection conditions corresponding to the index selected by the input device is different, a set of solution models obtained by converting the constraints is displayed on a separate screen or window on the display device. The display processing method of a solution model in constraint satisfaction according to claim 1.
前記解モデル表示ステップは、入力装置から表示条件の変更指示が入力された時、表示中の解モデルの集合を前記変更指示された表示条件に従って表示装置に再表示し、さらに入力装置から変更した表示条件の保存指示が入力された時、その変更された表示条件を記憶装置に出力して記憶させる
ことを特徴とする請求項1記載の制約充足における解モデルの表示処理方法。
In the solution model display step, when an instruction to change display conditions is input from the input device, the set of solution models being displayed is re-displayed on the display device according to the display conditions instructed to change, and further changed from the input device. The display processing method of a solution model for constraint satisfaction according to claim 1, wherein when a display condition saving instruction is input, the changed display condition is output to a storage device and stored.
コンピュータに、請求項1乃至6いずれか記載の各ステップを実行させるためのプログラム。   The program for making a computer perform each step in any one of Claims 1 thru | or 6. 解決したい問題を制約変数の集合、各制約変数の値の集合および制約変数間の制約の集合という形で定式化し、制約を満たす制約変数の値の組み合せである前記問題の解を求める制約充足における制約のデバッグを行うに当たって、前記問題の解のパターンを表現した解モデルの集合中に、本来は解のパターンでない解モデルが含まれていることや本来は解のパターンとなるべき解モデルが含まれていないことを調べて制約の誤りを発見し、誤り部分を特定するために、前記制約および当該制約に対応する解モデルの集合とともに、解モデルを表示する時の表示方法を記述した表示条件、あるいはこれに加えて表示すべき解モデルの条件を記述した検査条件を用いて、指定された制約に対応する解モデルの集合を指定された表示条件に従って表示し、あるいは指定された制約に対応する解モデルの集合のうち、指定された検査条件に合致する解モデルの集合を指定された表示条件に従って表示する装置であって、
入力装置および表示装置とともに、
制約を入力とし、該制約を解モデルの集合に変換して出力する解モデル生成装置と、
解モデルの集合および検査条件を入力とし、該解モデルの集合から該検査条件に合致する解モデルを取り出して出力する解モデル検査装置と、
入力装置から入力された制約または表示条件または検査条件または前記解モデル生成装置から受信した解モデルの集合を記憶する記憶装置と、
入力装置から入力された制約を前記解モデル生成装置に送信し、該解モデル生成装置から前記制約を変換した解モデルの集合を受信し、入力装置から入力された制約または表示条件または検査条件または前記解モデル生成装置から受信した解モデルの集合を記憶装置に出力して記憶させ、該記憶装置に記憶された制約、表示条件、検査条件および解モデルの集合にそれぞれ対応するインデックスを表示装置に表示し、入力装置で選択されたインデックスに対応する制約、解モデルの集合および表示条件、あるいは制約、解モデルの集合、表示条件および検査条件を記憶装置から取得し、記憶装置から制約、解モデルの集合、表示条件および検査条件を取得した場合のみ当該記憶装置から取得した解モデルの集合および検査条件を前記解モデル検査装置に送信し、該解モデル検査装置から前記検査条件に合致する解モデルの集合を受信し、記憶装置から取得した解モデルの集合、あるいは前記解モデル検査装置から受信した解モデルの集合を、記憶装置から取得した表示条件に従って表示装置に表示する解モデル表示装置とを備える
ことを特徴とする制約充足における解モデルの表示処理装置。
The problem to be solved is formulated in the form of a set of constraint variables, a set of values for each constraint variable, and a set of constraints between constraint variables, and in constraint satisfaction to find a solution of the problem that is a combination of the values of constraint variables that satisfy the constraints When debugging constraints, the set of solution models expressing the solution pattern of the problem includes a solution model that is not originally a solution pattern or a solution model that should originally be a solution pattern. Display conditions describing the display method when displaying the solution model, together with a set of solution models corresponding to the constraint and the constraint, in order to find out the error of the constraint by checking that it is not Or, in addition to this, a set of solution models corresponding to the specified constraints is used according to the specified display conditions using the inspection conditions describing the conditions of the solution model to be displayed. Shown, or out of the set of solutions model corresponding to the specified constraint, a device for displaying in accordance with the display condition to the specified set of solutions model that matches the specified test conditions,
Along with input device and display device
A solution model generation device that takes constraints as input, converts the constraints into a set of solution models, and outputs them;
A solution model checking device that takes a set of solution models and check conditions as inputs, and extracts and outputs a solution model that matches the check conditions from the set of solution models;
A storage device that stores constraints or display conditions or inspection conditions input from an input device or a set of solution models received from the solution model generation device;
A constraint input from an input device is transmitted to the solution model generation device, a set of solution models obtained by converting the constraint is received from the solution model generation device, and a constraint, a display condition, an inspection condition or the like input from the input device The set of solution models received from the solution model generation device is output to and stored in a storage device, and the constraints, display conditions, inspection conditions, and indexes corresponding to the set of solution models respectively stored in the storage device are displayed on the display device. Display the constraint corresponding to the index selected by the input device, the set of solution models and the display conditions, or obtain the constraints, the set of solution models, the display conditions and the inspection conditions from the storage device, and the constraints and the solution model from the storage device. set, display condition and the solution model assembly and inspection conditions of the solution model acquired from the storage device only when acquiring inspection conditions Sent to the inspection device, received from the solution model checking device a set of solution models that match the checking conditions, and received a set of solution models acquired from the storage device or a set of solution models received from the solution model checking device A solution model display device for displaying on the display device according to the display condition acquired from the storage device.
前記解モデル表示装置は、入力装置で選択されたインデックスに対応する制約を変換した解モデルの集合を一意に特定できるように、解モデル生成装置における制約と解モデルの集合との対応関係も記憶装置に出力して記憶させる
ことを特徴とする請求項8記載の制約充足における解モデルの表示処理装置。
The solution model display device also stores a correspondence relationship between the constraints in the solution model generation device and the set of solution models so that the set of solution models obtained by converting the constraint corresponding to the index selected by the input device can be uniquely identified. The display processing device for a solution model in constraint satisfaction according to claim 8, wherein the display processing device outputs the information to a device and stores the output.
前記解モデル表示装置は、入力装置で選択されたインデックスに対応する検査条件と関係する表示条件が一意に特定でき、表示条件の選択が省略できるように、表示条件と検査条件との対応関係も記憶装置に出力して記憶させる
ことを特徴とする請求項8記載の制約充足における解モデルの表示処理装置。
The solution model display device also has a correspondence relationship between the display condition and the inspection condition so that the display condition related to the inspection condition corresponding to the index selected by the input device can be uniquely specified and the selection of the display condition can be omitted. The display processing device for a solution model in the satisfaction of constraints according to claim 8, wherein the display processing device outputs the information to a storage device and stores it.
JP2007130442A 2007-05-16 2007-05-16 Solution model display processing method for satisfying constraints, program and apparatus thereof Expired - Fee Related JP5008457B2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP2007130442A JP5008457B2 (en) 2007-05-16 2007-05-16 Solution model display processing method for satisfying constraints, program and apparatus thereof

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP2007130442A JP5008457B2 (en) 2007-05-16 2007-05-16 Solution model display processing method for satisfying constraints, program and apparatus thereof

Publications (2)

Publication Number Publication Date
JP2008287411A JP2008287411A (en) 2008-11-27
JP5008457B2 true JP5008457B2 (en) 2012-08-22

Family

ID=40147084

Family Applications (1)

Application Number Title Priority Date Filing Date
JP2007130442A Expired - Fee Related JP5008457B2 (en) 2007-05-16 2007-05-16 Solution model display processing method for satisfying constraints, program and apparatus thereof

Country Status (1)

Country Link
JP (1) JP5008457B2 (en)

Family Cites Families (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPH05216675A (en) * 1992-02-06 1993-08-27 Nippon Telegr & Teleph Corp <Ntt> Constraint type problem solution system

Also Published As

Publication number Publication date
JP2008287411A (en) 2008-11-27

Similar Documents

Publication Publication Date Title
Lin et al. DSMDiff: a differentiation tool for domain-specific models
US20180239692A1 (en) Electronic technology resource evaluation system
US11080305B2 (en) Relational log entry instituting system
US11775262B2 (en) Multi-technology visual integrated data management and analytics development and deployment environment
US8930303B2 (en) Discovering pivot type relationships between database objects
US9075544B2 (en) Integration and user story generation and requirements management
JP5931806B2 (en) Automatic operation apparatus by image recognition, method and program thereof
US20160306690A1 (en) Integrated test design, automation, and analysis
US11755614B2 (en) Generation and graphical display of data transform provenance metadata
US20220035847A1 (en) Information retrieval
CN110928763A (en) Test method, test device, storage medium and computer equipment
WO2020235085A1 (en) Operation log visualization device, operation log visualization method, and operation log visualization program
CN108762743A (en) Data table operation code generation method and device
CN104572067A (en) Associating a visualization of user interface with source code
US20200363775A1 (en) Recommending visual and execution templates to enable automation of control and data exploration across systems
CN106970870B (en) Webpage test platform, webpage test method and webpage test system
Dumas et al. Robotic Process Mining.
JP6770225B2 (en) Information processing device and its processing method and program
JP5008457B2 (en) Solution model display processing method for satisfying constraints, program and apparatus thereof
CN111221610B (en) Page element acquisition method and device
WO2020129752A1 (en) Ontology creation device, method, and program
JP5984358B2 (en) Software development support apparatus and program
US20200371900A1 (en) System for intelligent restructuring of automation test beds
JP2010128870A (en) Data processor
US20120192011A1 (en) Data processing apparatus that performs test validation and computer-readable storage medium

Legal Events

Date Code Title Description
A621 Written request for application examination

Free format text: JAPANESE INTERMEDIATE CODE: A621

Effective date: 20090730

RD04 Notification of resignation of power of attorney

Free format text: JAPANESE INTERMEDIATE CODE: A7424

Effective date: 20110613

RD02 Notification of acceptance of power of attorney

Free format text: JAPANESE INTERMEDIATE CODE: A7422

Effective date: 20110614

A521 Request for written amendment filed

Free format text: JAPANESE INTERMEDIATE CODE: A821

Effective date: 20110615

RD03 Notification of appointment of power of attorney

Free format text: JAPANESE INTERMEDIATE CODE: A7423

Effective date: 20110616

A131 Notification of reasons for refusal

Free format text: JAPANESE INTERMEDIATE CODE: A131

Effective date: 20120316

A521 Request for written amendment filed

Free format text: JAPANESE INTERMEDIATE CODE: A523

Effective date: 20120510

TRDD Decision of grant or rejection written
A01 Written decision to grant a patent or to grant a registration (utility model)

Free format text: JAPANESE INTERMEDIATE CODE: A01

Effective date: 20120528

A01 Written decision to grant a patent or to grant a registration (utility model)

Free format text: JAPANESE INTERMEDIATE CODE: A01

A61 First payment of annual fees (during grant procedure)

Free format text: JAPANESE INTERMEDIATE CODE: A61

Effective date: 20120529

R150 Certificate of patent or registration of utility model

Ref document number: 5008457

Country of ref document: JP

Free format text: JAPANESE INTERMEDIATE CODE: R150

Free format text: JAPANESE INTERMEDIATE CODE: R150

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20150608

Year of fee payment: 3

S531 Written request for registration of change of domicile

Free format text: JAPANESE INTERMEDIATE CODE: R313531

R350 Written notification of registration of transfer

Free format text: JAPANESE INTERMEDIATE CODE: R350

LAPS Cancellation because of no payment of annual fees