Skip to content

Commit

Permalink
more stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
vale1410 committed May 27, 2021
1 parent 5213dfc commit 6f28264
Show file tree
Hide file tree
Showing 15 changed files with 2,654 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cmd/solve.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ and usage of using your command.
ValidArgsFunction: autoCompleteBuleFiles,
Run: func(cmd *cobra.Command, args []string) {

unitPropagationFlag = false
textualFlag = false

if len(args) == 0 {
return
}
Expand Down Expand Up @@ -263,8 +266,6 @@ func init() {
rootCmd.AddCommand(solveCmd)
solveCmd.Flags().StringVarP(&withInstance, "with", "w", defaultInstance, "solve problem with particular solver instance")
solveCmd.RegisterFlagCompletionFunc("with", autoCompleteSolverInstance)
unitPropagationFlag = false
textualFlag = false
}

// Utils
Expand Down
26 changes: 26 additions & 0 deletions doc/QBF2021/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@

NAME=bule
OUTPUT=$(NAME).pdf

all: compile

compile:
pdflatex $(NAME).tex
bibtex $(NAME)
# pdflatex $(NAME).tex
# pdflatex $(NAME).tex

show: compile
evince $(OUTPUT) 2>/dev/null &

clean:
rm -fr $(NAME).fdb_latexmk
rm -fr $(NAME).fls
rm -fr $(NAME).toc
rm -fr $(NAME).pdf
rm -fr $(NAME).blg
rm -fr $(NAME).bbl
rm -fr $(NAME).out
rm -fr $(NAME).aux
rm -fr $(NAME).log
rm -fr *.aux
Binary file added doc/QBF2021/bule.dvi
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions doc/Makefile → doc/past/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ show: compile
evince $(OUTPUT) 2>/dev/null &

clean:
rm -fr $(NAME).toc
rm -fr $(NAME).pdf
rm -fr $(NAME).blg
rm -fr $(NAME).bbl
Expand Down
Loading

0 comments on commit 6f28264

Please sign in to comment.