Skip to content

Commit

Permalink
Merge pull request #8 from seqan/fix/tikz
Browse files Browse the repository at this point in the history
fix: no semicolons
  • Loading branch information
SGSSGene authored Nov 12, 2024
2 parents 423a77a + 6b87c9b commit 0464f27
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/sahara/tikz.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ auto generateTIKZ(search_schemes::Search _s, int newLen, bool displayAlphabet, d
std::string out;
out += R"(
\begin{tikzpicture}[scale=1.]
\tikzstyle{node}=[fill=white, shape=circle, draw, minimum size=0.25cm,scale=2.];
\tikzstyle{edge}=[left,scale=1.];
\tikzstyle{medge}=[scale=1.];
\tikzstyle{redge}=[right,scale=1.];
\tikzstyle{bedge}=[below,scale=1.];
\tikzstyle{node}=[fill=white, shape=circle, draw, minimum size=0.25cm,scale=2.]
\tikzstyle{edge}=[left,scale=1.]
\tikzstyle{medge}=[scale=1.]
\tikzstyle{redge}=[right,scale=1.]
\tikzstyle{bedge}=[below,scale=1.]
)";

out += fmt::format("\\node[node] (n) at (0, 0) {{}};\n");
Expand Down

0 comments on commit 0464f27

Please sign in to comment.