3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-29 11:58:51 +00:00
z3/.gitignore
github-actions[bot] f37b56439a
simplify: remove dead code in seq_subset and delete gmon.out
- seq_subset.cpp: Remove redundant 'e ⊆ a*' check (lines 46-48).
  When a=epsilon and b=b1*, get_info(b1*).nullable is always l_true,
  so the earlier epsilon+nullable check already handles this case.

- seq_subset.cpp: Remove redundant 'R ⊆ R*' check (lines 50-52).
  The preceding 'a ⊆ a*' check uses the same is_star condition but
  calls is_subset_rec with the same depth (more budget), making the
  depth+1 variant unreachable in any useful scenario.

- seq_subset.cpp: Remove trailing whitespace (lines 22, 33).

- Remove accidentally committed gmon.out profiling output file.

- .gitignore: Add gmon.out to prevent future accidental commits.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-06-10 06:15:28 +00:00

128 lines
2 KiB
Text

*~
rebase.cmd
*.pyc
*.pyo
# Ignore callgrind files
callgrind.out.*
# .hpp files are automatically generated
*.hpp
.env
.z3-trace
.env
genaisrc/jsconfig.json
genaisrc/genaiscript.d.ts
.genaiscript
package-lock.json
package.json
node_modules
# OCaml generated files
*.a
*.o
*.cma
*.cmo
*.cmi
*.cmx
*.byte
*.cmxa
ocamlz3
# Java generated files
*.class
*.jar
# Emacs temp files
\#*\#
# Directories with generated code and documentation
node_modules/*
.genaiscript/*
release/*
build/*
trace/*
build-dist/*
dist/*
src/out/*
doc/html/*
# GTAGS generated files
src/GPATH
src/GRTAGS
src/GSYMS
src/GTAGS
src/HTML/*
# CSCOPE files
src/cscope.in.out
src/cscope.out
src/cscope.po.out
ncscope.out
# CEDET files
.cproject
.project
# Commonly used directories for code
bld_dbg/*
bld_rel/*
bld_dbg_x64/*
bld_rel_x64/*
.vscode
*build*/**
# Auto generated files.
config.log
config.status
install_tactic.cpp
mem_initializer.cpp
gparams_register_modules.cpp
scripts/config-debug.mk
scripts/config-release.mk
src/api/api_commands.cpp
src/api/api_log_macros.h
src/api/api_log_macros.cpp
src/api/dll/api_dll.def
src/api/dotnet/Enumerations.cs
src/api/dotnet/Native.cs
src/api/dotnet/Properties/AssemblyInfo.cs
src/api/dotnet/Microsoft.Z3.xml
src/api/python/z3/z3consts.py
src/api/python/z3/z3core.py
src/ast/pattern/database.h
src/util/version.h
src/util/z3_version.h
src/api/java/Native.cpp
src/api/java/Native.java
src/api/java/enumerations/*.java
src/api/ml/z3native_stubs.c
src/api/ml/z3native.ml
src/api/ml/z3enums.ml
src/api/ml/z3native.mli
src/api/ml/z3enums.mli
src/api/ml/z3.mllib
src/api/js/node_modules/
src/api/js/build/
src/api/js/**/*.__GENERATED__.*
debug/*
examples/python/z3
examples/python/libz3.dll
out/**
*.bak
doc/api
doc/code
.vs
examples/**/obj
CMakeSettings.json
# Editor temp files
*.swp
.DS_Store
dbg/**
*.wsp
CppProperties.json
genaisrc/genblogpost.genai.mts
*.mts
# Bazel generated files
bazel-*
# Local issue tracking
.beads
.z3-agent/
.playwright*/
.atomic/
.deepscan/
.deeptest/
tptp_test/
tptp_benchmarks/
# Profiling output files
gmon.out