Skip to content

Commit c324f94

Browse files
committed
Merge branch 'main' into stable/2026
2 parents c11c415 + e0b51a9 commit c324f94

File tree

98 files changed

+171
-175
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+171
-175
lines changed

2DO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1. In variable.csv, change from Lagrange multipliers to grandient of objective.
1+
1. In variable.csv, change from Lagrange multipliers to gradient of objective.
22

33
2. In asymptotic statistics, automatically detect which inequality constraint are active and treat like equality constraints.
44

CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# required_definition( variable type docstring )
2222
#
2323
# variable
24-
# If this varaible is defined, echo its definition in the output.
24+
# If this variable is defined, echo its definition in the output.
2525
# Otherwise output a fatal error message.
2626
#
2727
# type
@@ -168,7 +168,7 @@ list(FIND
168168
isSystemDir
169169
)
170170
if("${isSystemDir}" STREQUAL "-1")
171-
set(CMAKE_INSTALL_RPATH "${dismod_at_pefix}/${cmake_libdir}")
171+
set(CMAKE_INSTALL_RPATH "${dismod_at_prefix}/${cmake_libdir}")
172172
endif("${isSystemDir}" STREQUAL "-1")
173173
# ----------------------------------------------------------------------------
174174
# package information for: gsl, eigen, ipopt, cppad_mixed, cppad, CHOLMOD
@@ -187,7 +187,7 @@ FOREACH(pkg gsl eigen3 ipopt cppad_mixed cppad CHOLMOD)
187187
MESSAGE(FATAL_ERROR "PKG_CONFIG_PATH=$ENV{PKG_CONFIG_PATH}")
188188
ENDIF( )
189189
ENDIF( ${pkg}_FOUND )
190-
# INLCUDE_DIRECTORIES
190+
# INCLUDE_DIRECTORIES
191191
IF( ${pkg} STREQUAL "eigen3" )
192192
INCLUDE_DIRECTORIES( SYSTEM ${eigen3_INCLUDE_DIRS} )
193193
ELSE( ${pkg} STREQUAL "eigen3" )
@@ -208,7 +208,7 @@ INCLUDE_DIRECTORIES( ${SQLite3_INCLUDE_DIRS} )
208208
#
209209
# package information for: CHOLMOD
210210
# The cppad_mixed.hpp file includes cholmod.h so this is needed.
211-
# Fedora 42 uses CHOLMOD.pc (above) becasue FIND_PACKAGE(CHOLMOD) is broken
211+
# Fedora 42 uses CHOLMOD.pc (above) because FIND_PACKAGE(CHOLMOD) is broken
212212
IF( "$CHOLMOD_INDLUDE_DIR" STREQUAL "NOTFOUND" )
213213
FIND_PACKAGE(CHOLMOD)
214214
INCLUDE_DIRECTORIES( "${CHOLMOD_INCLUDE_DIR}" )

bin/check_all.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ possible flags
3434
--verbose_make generate verbose makefiles
3535
--skip_check_copy do not check copyright messages
3636
--skip_external_links do not check documentation external links
37-
--suppress_spell_warnings do not check for documentaiton spelling errors
37+
--suppress_spell_warnings do not check for documentation spelling errors
3838
EOF
3939
exit 0
4040
fi

bin/check_configure.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ do
3737
fi
3838
if [ "$required" == 'no' ] && [ "$present" == 'yes' ]
3939
then
40-
echo "unecessary: # include <dismod_at/configure.hpp>"
40+
echo "unnecessary: # include <dismod_at/configure.hpp>"
4141
echo " $file"
4242
exit 1
4343
fi

bin/check_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ then
3838
fi
3939
if [ "$site_packages" != '' ]
4040
then
41-
echo_eval rm -rf $pyton_dir/dismod_at
41+
echo_eval rm -rf $python_dir/dismod_at
4242
fi
4343
#
4444
# bin_dir

bin/check_version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e -u
55
# SPDX-FileCopyrightText: Bradley M. Bell <bradbell@seanet.com>
66
# SPDX-FileContributor: 2020-26 Bradley M. Bell
77
# -----------------------------------------------------------------------------
8-
# bin/check_verison.sh
8+
# bin/check_version.sh
99
# Checks that the version number in the version_file_list are correct;
1010
# see bin/dev_settings.sh for more discussion.
1111
# -----------------------------------------------------------------------------

bin/csv_summary.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def read_file(file_name) :
3333
table.append(row)
3434
return table
3535
#
36-
# avgerage
36+
# average
3737
def average(table, variable_column, value_column) :
3838
avg = dict()
3939
count = dict()
@@ -130,7 +130,7 @@ def weighted_average_residual(data_table) :
130130
print_variable( 'count', count )
131131
print()
132132
# --------------------------------------------------------------------------
133-
# rate_fit_valeu, rate_mean_value, rate_residual
133+
# rate_fit_value, rate_mean_value, rate_residual
134134
table = table_dict['variable']
135135
table = subsample(table, 'var_type', 'rate')
136136
(avg, count) = average(table, 'rate', 'fit_value')

bin/dock_dismod_at.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -198,10 +198,10 @@ then
198198
if [ "$driver" == 'docker' ]
199199
then
200200
cat << EOF
201-
If docker deamon is not running perhaps one of the following will start it:
201+
If docker daemon is not running perhaps one of the following will start it:
202202
sudo systemctl start docker
203203
sudo service docker start
204-
If it is a premission problem perhaps one of the following will get permission:
204+
If it is a permission problem perhaps one of the following will get permission:
205205
sudo groupadd docker
206206
sudo usermod -aG docker $USER
207207
then log out and long back on this system.
@@ -322,7 +322,7 @@ cat << EOF > Dockerfile
322322
FROM dismod_at.mixed.$build_type
323323
WORKDIR /home/dismod_at.git
324324
#
325-
# Check soruce
325+
# Check source
326326
RUN \
327327
mv bin/install_settings.py temp.py && \
328328
git checkout --quiet $dismod_at_hash && \

bin/new_release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ set -e -u
1313
# new_release.sh uses --skip_external_links when testing before the
1414
# new release (tag) exists.
1515
# -----------------------------------------------------------------------------
16-
year='2025' # Year for this stable version
17-
release='2' # first release for each year starts with 0
16+
year='2026' # Year for this stable version
17+
release='0' # first release for each year starts with 0
1818
# -----------------------------------------------------------------------------
1919
if [ "$0" != 'bin/new_release.sh' ]
2020
then

bin/run_cmake.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ echo_eval() {
1111
}
1212
# -----------------------------------------------------------------------------
1313
#
14-
# buld_type, verbose_makefile
14+
# build_type, verbose_makefile
1515
# dismod_at_prefix
1616
# python3_executable
1717
# specific_compiler

0 commit comments

Comments
 (0)