Skip to content

Commit

Permalink
Каркас проекта
Browse files Browse the repository at this point in the history
  • Loading branch information
alkozko committed Oct 29, 2017
1 parent 2be893c commit 0f7c62b
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 0 deletions.
17 changes: 17 additions & 0 deletions config.proto
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,17 @@
encoding "utf8";

TTextMinerConfig {
Dictionary = "mydic.gzt";
Articles = [
{ Name = "фильм" }
],
Input = {
File = "input\\movies.txt";
}
PrettyOutput = "output\\output.html";
PrintTree="output\\output_tree.txt";
Output = {
File = "output\\output.txt";
Format = text;
}
}
2 changes: 2 additions & 0 deletions facttypes.proto
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,2 @@
import "base.proto";
import "facttypes_base.proto";
4 changes: 4 additions & 0 deletions film.cxx
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,4 @@
#encoding "utf-8"
#GRAMMAR_ROOT S

S -> Adj Noun;
9 changes: 9 additions & 0 deletions mydic.gzt
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,9 @@
encoding "utf8";

import "base.proto";
import "articles_base.proto";

TAuxDicArticle "фильм"
{
key = { "tomita:film.cxx" type=CUSTOM }
}
Empty file added place_tomitaparser_here
Empty file.

0 comments on commit 0f7c62b

Please sign in to comment.